diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-09-16 19:04:34 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-09-16 19:04:34 +0200 |
commit | fd5e330ede426a7152deab41620b6a60b63df220 (patch) | |
tree | 02fb227e93c929db6dc4a3d6ef254516bdc6f2fe /archaeological_context_records/admin.py | |
parent | 0f88ac0c7abd4ecb5e9bed54474af23752efcbcd (diff) | |
download | Ishtar-fd5e330ede426a7152deab41620b6a60b63df220.tar.bz2 Ishtar-fd5e330ede426a7152deab41620b6a60b63df220.zip |
🗃️ context records new fields, default values, admin interface - town add notice (refs #6024)
Town:
- notice
Context records:
- excavated length
- excavated width
- structure
- texture
- colors
- details on colors
- inclusions
Diffstat (limited to 'archaeological_context_records/admin.py')
-rw-r--r-- | archaeological_context_records/admin.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/archaeological_context_records/admin.py b/archaeological_context_records/admin.py index 518650874..ab3e98797 100644 --- a/archaeological_context_records/admin.py +++ b/archaeological_context_records/admin.py @@ -111,6 +111,10 @@ general_models = [ models.DocumentationType, models.ActivityType, models.ExcavationTechnicType, + models.InclusionType, + models.ColorType, + models.TextureType, + models.StructureType ] for model in general_models: admin_site.register(model, GeneralTypeAdmin) |