##// END OF EJS Templates
Removed an e-mail field by CSS
neko259 -
r448:e8a6098a default
parent child Browse files
Show More
@@ -206,6 +206,11 b''
206 206
207 207 <div class="post-form-w">
208 208 <script src="{% static 'js/panel.js' %}"></script>
209 <style type="text/css">
210 form > :nth-child(4) {
211 display: none;
212 }
213 </style>
209 214 <div class="post-form">
210 215 <div class="form-title">{% trans "Create new thread" %}</div>
211 216 <form enctype="multipart/form-data" method="post">{% csrf_token %}
@@ -94,18 +94,23 b''
94 94 {% endcache %}
95 95
96 96 <div class="post-form-w">
97 <script src="{% static 'js/panel.js' %}"></script>
98 <div class="form-title">{% trans "Reply to thread" %} #{{ thread.get_opening_post.id }}</div>
97 <script src="{% static 'js/panel.js' %}"></script>
98 <style type="text/css">
99 form > :nth-child(4) {
100 display: none;
101 }
102 </style>
103 <div class="form-title">{% trans "Reply to thread" %} #{{ thread.get_opening_post.id }}</div>
99 104 <div class="post-form">
100 <form id="form" enctype="multipart/form-data" method="post"
101 >{% csrf_token %}
102 {{ form.as_div }}
103 <div class="form-submit">
104 <input type="submit" value="{% trans "Post" %}"/>
105 </div>
106 </form>
107 <div><a href="{% url "staticpage" name="help" %}">
108 {% trans 'Text syntax' %}</a></div>
105 <form id="form" enctype="multipart/form-data" method="post"
106 >{% csrf_token %}
107 {{ form.as_div }}
108 <div class="form-submit">
109 <input type="submit" value="{% trans "Post" %}"/>
110 </div>
111 </form>
112 <div><a href="{% url "staticpage" name="help" %}">
113 {% trans 'Text syntax' %}</a></div>
109 114 </div>
110 115 </div>
111 116
General Comments 0
You need to be logged in to leave comments. Login now