WIP: Basic work on audit

This commit is contained in:
2020-02-09 00:04:54 +00:00
parent ae151ed45e
commit e9a9250027
12 changed files with 192 additions and 24 deletions

View File

@@ -12,7 +12,7 @@ class AssetForm(forms.ModelForm):
class Meta:
model = models.Asset
fields = '__all__'
exclude = ['asset_id_prefix', 'asset_id_number']
exclude = ['asset_id_prefix', 'asset_id_number', 'last_audited_at', 'last_audited_by']
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)