mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-03 13:58:47 +00:00
29 lines
521 B
Python
29 lines
521 B
Python
"""
|
|
Django Forms for interacting with Build objects
|
|
"""
|
|
|
|
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from InvenTree.forms import HelperForm
|
|
|
|
from .models import Build
|
|
|
|
|
|
class EditBuildForm(HelperForm):
|
|
""" Form for editing a Build object.
|
|
"""
|
|
|
|
class Meta:
|
|
model = Build
|
|
fields = [
|
|
'title',
|
|
'part',
|
|
'quantity',
|
|
'batch',
|
|
'URL',
|
|
'notes',
|
|
'status',
|
|
# 'completion_date',
|
|
]
|