validate Projects field in organization
[redakcja.git] / apps / organizations / templates / organizations / new.html
index 101fa3b..531f5d4 100644 (file)
@@ -7,34 +7,7 @@
 
 
     <form enctype="multipart/form-data" method="POST">
-    {% csrf_token %}
-        {{ form.non_field_errors }}
-        <label for="title">{% trans "Name" %}</label>
-            {{ form.name.errors }}
-            <input class="form-control" name="name" type="text" value="{{ form.name.value|default:"" }}">
-        <label for="logo">{% trans "Logo" %}</label>
-            {{ form.logo.errors }}
-            <div>
-            {{ form.logo }}
-            </div>
-        <label for="country">{% trans "Country" %}</label>
-            {{ form.country.errors }}
-            <select class="form-control" name="country">
-                {% for c, t in form.cts %}
-                    <option value='{{ c }}' {% if form.country.value == c %}selected="selected"{% endif %}>{{ t }}</option>
-                {% endfor %}
-            </select>
-        <label for="www">{% trans "WWW" %}</label>
-            {{ form.www.errors }}
-            <input class="form-control" name="www" type="www" value="{{ form.www.value|default:"" }}">
-        <label for="title">{% trans "Description" %}</label>
-            {{ form.description.errors }}
-            <textarea class="form-control" name="description">{{ form.description.value|default:"" }}</textarea>
-        <label for="title">{% trans "Projects" %}</label>
-            {{ form.projects.errors }}
-            <textarea class="form-control" name="projects">{{ form.projects.value|default:"" }}</textarea>
-           {% trans "Enter each line as: URL language description" %}<br/>
-
+        {% include "organizations/snippets/organization_form.html" %}
         <button style="margin-top:1em;" class="btn btn-default" type="submit">{% trans "Create organization" %}</button></td></tr>
     </form>