diff --git a/boards/forms.py b/boards/forms.py
--- a/boards/forms.py
+++ b/boards/forms.py
@@ -27,6 +27,7 @@ class NeboardForm(forms.Form):
def as_p(self):
"Returns this form rendered as HTML
s."
return self._html_output(
+ # TODO Do not show hidden rows in the list here
normal_row='
',
- error_row='%s
',
+ error_row='',
row_ender='',
help_text_html=' %s',
errors_on_separate_row=True)
-
class PostForm(NeboardForm):
title = forms.CharField(max_length=TITLE_MAX_LENGTH, required=False,
diff --git a/boards/templates/boards/posting_general.html b/boards/templates/boards/posting_general.html
--- a/boards/templates/boards/posting_general.html
+++ b/boards/templates/boards/posting_general.html
@@ -201,65 +201,23 @@
{% else %}
{% trans 'No threads exist. Create the first one!' %}
- {% endif %}
+ {% endif %}
-