django-uni-form
django-uni-form copied to clipboard
django-uni-form has been deprecated. Please use django-crispy-forms. Link provided in the README.rst
hello, i've upgraded from 0.8 to 0.9 and now it's broken. The browser displays errors: Django Version: 1.3 Exception Type: TemplateSyntaxError Exception Value: Invalid filter: 'as_uni_form' Exception Location: /Users/me/python/virtualenv/myapp/lib/python2.6/site-packages/django/template/base.py in...
I have a gigantic layout, and part of it is: ``` layout = Layout( super(ThisForm, self).get_layout(), MultiField( u'Section J', Div(*( ThisForm.get_section_j_fields() + [HTML("Next")] )), css_id = "step9", css_class = "form-step"...
``` def test_uni_form_invalid_helper(self): template = get_template_from_string(u""" {% load uni_form_tags %} {% uni_form form form_helper %} """) c = Context({'form': TestForm(), 'form_helper': "invalid"}) settings.UNIFORM_FAIL_SILENTLY = False if settings.TEMPLATE_DEBUG: self.assertRaises(TemplateSyntaxError, lambda:template.render(c)) else:...
Hi, When using the django-uni-form templatetags through add_to_builtins in settings.py (the most logical location for using add_to_builtins) the server fails to start. This is a new bug since after 0.7.0....
The `HTML()` element is dangerous because it goes beyond the boundaries of clean Django/Python coding and, more importantly, it has nothing to do with the layout stuff. We all know...
I use a CSS styling for tags, and it would be nice if django-uni-form had a helper that would render this out-of-the-box. Is this possible?