summaryrefslogtreecommitdiff
path: root/app/posts/templates
diff options
context:
space:
mode:
Diffstat (limited to 'app/posts/templates')
-rw-r--r--app/posts/templates/posts/post_form.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/posts/templates/posts/post_form.html b/app/posts/templates/posts/post_form.html
index 23289fe..35e2959 100644
--- a/app/posts/templates/posts/post_form.html
+++ b/app/posts/templates/posts/post_form.html
@@ -4,7 +4,7 @@
<form action="" method="post" class="comment-form">{% csrf_token %}
{% for field in form %}
<fieldset>
- {%if field.name == "guide_type" or field.name == "post_status" %}<span class="selector">{{field.label_tag}}</span>{%else%}{{field.label_tag}}{%endif%}
+ {%if field.name == "guide_type" or field.name == "post_status" or field.name == "template_type" %}<span class="selector">{{field.label_tag}}</span>{%else%}{{field.label_tag}}{%endif%}
{%if field.name == "body_markdown"%}<div class="textarea-rounded">{{ field }}</div>{%else%}{{field}}{%endif%}
</fieldset>
<small class="alert">{% if field.errors %}{{field.errors}}{% endif %}</small>