mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 13:32:15 +00:00
10 lines
160 B
Python
10 lines
160 B
Python
from django import forms
|
|
|
|
from assets import models
|
|
|
|
|
|
class AssetForm(forms.ModelForm):
|
|
class Meta:
|
|
model = models.Asset
|
|
fields = '__all__'
|