X-Git-Url: https://git.mdrn.pl/prawokultury.git/blobdiff_plain/db44e1e509986909f100e7d1d03f2967d54cbc3d..5120532d42f2130dd250ec7089d28d9d0fa2b09c:/migdal/templates/comments/form.html diff --git a/migdal/templates/comments/form.html b/migdal/templates/comments/form.html new file mode 100755 index 0000000..341750f --- /dev/null +++ b/migdal/templates/comments/form.html @@ -0,0 +1,29 @@ +{% load comments i18n %} +
+

{% trans "Add comment" %}

+
{% csrf_token %} + {% if next %}{% endif %} + {% for field in form %} + {% if field.is_hidden %} + {{ field }} + {% endif %} + {% endfor %} + + {% for field in form %} + {% if not field.is_hidden %} + + + {% endif %} + {% endfor %} + +
{{ field.label_tag }} + + {% if field.errors %}

{{ field.errors }}

{% endif %} + {{ field }} +
+ + +
+
+