Preparing files for transfer to PyRIGS

This commit is contained in:
Matthew Smith
2019-10-01 13:22:16 +01:00
parent 5aafa36d2a
commit 1e1f3037f8
91 changed files with 0 additions and 0 deletions

15
assets/forms.py Normal file
View File

@@ -0,0 +1,15 @@
from django import forms
from assets import models
class AssetForm(forms.ModelForm):
class Meta:
model = models.Asset
fields = '__all__'
class SupplierForm(forms.ModelForm):
class Meta:
model = models.Supplier
fields = '__all__'