diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-06-02 22:53:12 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-06-02 22:53:12 +0200 |
commit | b78fa1d244be029d49966a920f00f178ee2ef9ae (patch) | |
tree | 5ccf9926aed3e4fee4dce8594f69010ae2b00520 /archaeological_finds/lookups.py | |
parent | 914fca851a55d60a25eee0a0848175f68f8c4b4c (diff) | |
download | Ishtar-b78fa1d244be029d49966a920f00f178ee2ef9ae.tar.bz2 Ishtar-b78fa1d244be029d49966a920f00f178ee2ef9ae.zip |
Find: add functional area field
Diffstat (limited to 'archaeological_finds/lookups.py')
-rw-r--r-- | archaeological_finds/lookups.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/archaeological_finds/lookups.py b/archaeological_finds/lookups.py index acf8895cb..439bda3a4 100644 --- a/archaeological_finds/lookups.py +++ b/archaeological_finds/lookups.py @@ -82,3 +82,8 @@ class MaterialTypeLookup(TypeLookupChannel): @register("object_type") class MaterialTypeLookup(TypeLookupChannel): model = models.ObjectType + + +@register("functional_area") +class FunctionalAreaLookup(TypeLookupChannel): + model = models.FunctionalArea |