##// 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 <div class="post-form-w">
207 <div class="post-form-w">
208 <script src="{% static 'js/panel.js' %}"></script>
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 <div class="post-form">
214 <div class="post-form">
210 <div class="form-title">{% trans "Create new thread" %}</div>
215 <div class="form-title">{% trans "Create new thread" %}</div>
211 <form enctype="multipart/form-data" method="post">{% csrf_token %}
216 <form enctype="multipart/form-data" method="post">{% csrf_token %}
@@ -95,6 +95,11 b''
95
95
96 <div class="post-form-w">
96 <div class="post-form-w">
97 <script src="{% static 'js/panel.js' %}"></script>
97 <script src="{% static 'js/panel.js' %}"></script>
98 <style type="text/css">
99 form > :nth-child(4) {
100 display: none;
101 }
102 </style>
98 <div class="form-title">{% trans "Reply to thread" %} #{{ thread.get_opening_post.id }}</div>
103 <div class="form-title">{% trans "Reply to thread" %} #{{ thread.get_opening_post.id }}</div>
99 <div class="post-form">
104 <div class="post-form">
100 <form id="form" enctype="multipart/form-data" method="post"
105 <form id="form" enctype="multipart/form-data" method="post"
General Comments 0
You need to be logged in to leave comments. Login now