summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--python/fatcat_web/forms.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/python/fatcat_web/forms.py b/python/fatcat_web/forms.py
index ff885fcb..1c9fb199 100644
--- a/python/fatcat_web/forms.py
+++ b/python/fatcat_web/forms.py
@@ -476,5 +476,9 @@ class EntityTomlForm(EntityEditForm):
pop_fields = ['ident', 'state', 'revision', 'redirect']
else:
pop_fields = ['ident', 'state']
+
+ # remove "expand" fields
+ pop_fields += ['releases', 'container', 'work', 'creators', 'files', 'filesets', 'webcaptures']
+
etf.toml.data = entity_to_toml(entity, pop_fields=pop_fields)
return etf