Commit 225595d470d21a23f917e36fcacd2bbe84fa5dbc

Authored by Zambom
1 parent 16bef476

Fixing categories summernote field

categories/forms.py
... ... @@ -5,4 +5,7 @@ class CategoryForm(forms.ModelForm):
5 5 class Meta:
6 6 model = Category
7 7 fields = ( 'name', 'description', 'visible', 'coordinators', )
  8 + widgets = {
  9 + 'description': forms.Textarea,
  10 + }
8 11  
9 12 \ No newline at end of file
... ...
users/templates/users/create.html
... ... @@ -15,4 +15,6 @@
15 15 </div>
16 16 </div>
17 17 </div>
  18 + <br clear="all" />
  19 + <br clear="all" />
18 20 {% endblock %}
... ...
users/tests/__init__.py 0 → 100644
users/tests/test_views.py 0 → 100644