I have a ModelForm with some fake fields that I process later when save the model.
class MyForm(forms.ModelForm):
field1= forms.IntegerField(min_value=0)
field2= forms.ChoiceField(choices=SIDES_CHOICES, required=True)
field3= forms.CharField(max_length=140, required=False)
What I need is to show or to hide some of them depending on whether we are adding a new instance or changing an existing one.
All I read is about hide real fields that are defined in the model, but it's not my case. With 'fake' i mean fields that are not in the model or database, only defined in the form.
I have tried this in the __init__
override of the ModelForm:
def __init__(self, *args, **kwargs):
super(MyForm, self).__init__(*args, **kwargs)
if not self.instance.pk:
del self.fields['field1']
But I get this error:
Key 'field1' not found in 'MyForm'
Entire error traceback:
Template error:
In template C:\Python34\lib\site-packages\django_suit-0.2.18-py3.4.egg\suit\templates\admin\change_form.html, error at line 19
Key 'field1' not found in 'MyForm' 9 : {{ media }}
10 :
11 : {% endblock %}
12 :
13 :
14 : {% block extrajs %}
15 : {{ block.super }}
16 :
17 : {% if 'CONFIRM_UNSAVED_CHANGES'|suit_conf %}
18 : <!-- Warn on leaving unsaved form -->
19 : <script src="{% static 'suit/js/suit-form- confirm.js' %}"></script>
20 : <script type="text/javascript">
21 : confirmExitIfModified('{% firstof opts.model_name opts.module_name %}_form', '{% trans 'You have unsaved changes' %}.');
22 : </script>
23 : {% endif %}
24 :
25 : {% if adminform.model_admin.suit_form_tabs %}
26 : <script type="text/javascript">
27 : (function ($) {
28 : $(function () {
29 : $('#suit_form_tabs').suit_form_tabs();
Traceback:
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\forms\forms.py" in __getitem__
141. field = self.fields[name]
During handling of the above exception ('field1'), another exception occurred:
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\core\handlers\base.py" in get_response
174. response = self.process_exception_by_middleware(e, request)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\core\handlers\base.py" in get_response
172. response = response.render()
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\response.py" in render
160. self.content = self.rendered_content
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\response.py" in rendered_content
137. content = template.render(context, self._request)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\backends\django.py" in render
95. return self.template.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render
206. return self._render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in _render
197. return self.nodelist.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render
992. bit = node.render_annotated(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render_annotated
959. return self.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\loader_tags.py" in render
173. return compiled_parent._render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in _render
197. return self.nodelist.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render
992. bit = node.render_annotated(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render_annotated
959. return self.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\loader_tags.py" in render
173. return compiled_parent._render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in _render
197. return self.nodelist.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render
992. bit = node.render_annotated(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render_annotated
959. return self.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\loader_tags.py" in render
69. result = block.nodelist.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render
992. bit = node.render_annotated(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render_annotated
959. return self.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\loader_tags.py" in render
69. result = block.nodelist.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render
992. bit = node.render_annotated(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render_annotated
959. return self.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render
1043. output = self.filter_expression.resolve(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in resolve
709. obj = self.var.resolve(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in resolve
850. value = self._resolve_lookup(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in _resolve_lookup
913. current = current()
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\loader_tags.py" in super
83. return mark_safe(self.render(self.context))
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\loader_tags.py" in render
69. result = block.nodelist.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render
992. bit = node.render_annotated(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render_annotated
959. return self.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\loader_tags.py" in render
69. result = block.nodelist.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render
992. bit = node.render_annotated(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render_annotated
959. return self.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\loader_tags.py" in render
69. result = block.nodelist.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render
992. bit = node.render_annotated(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render_annotated
959. return self.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\defaulttags.py" in render
220. nodelist.append(node.render_annotated(context))
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render_annotated
959. return self.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\loader_tags.py" in render
209. return template.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render
208. return self._render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in _render
197. return self.nodelist.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render
992. bit = node.render_annotated(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render_annotated
959. return self.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\defaulttags.py" in render
220. nodelist.append(node.render_annotated(context))
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render_annotated
959. return self.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\defaulttags.py" in render
584. return self.nodelist.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render
992. bit = node.render_annotated(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in render_annotated
959. return self.render(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\defaulttags.py" in render
319. match = condition.eval(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\defaulttags.py" in eval
951. return self.value.resolve(context, ignore_failures=True)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in resolve
709. obj = self.var.resolve(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in resolve
850. value = self._resolve_lookup(context)
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\template\base.py" in _resolve_lookup
913. current = current()
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\contrib\admin\helpers.py" in errors
117. for f in self.fields if f not in self.readonly_fields).strip('\n')
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\contrib\admin\helpers.py" in <genexpr>
117. for f in self.fields if f not in self.readonly_fields).strip('\n')
File "C:\Python34\lib\site-packages\django-1.9.6-py3.4.egg\django\forms\forms.py" in __getitem__
144. "Key %r not found in '%s'" % (name, self.__class__.__name__))