You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

48 lines
1.3 KiB

{% extends 'base.html' %}
{% load static %}
{% block scripts %}
<script src="{% static 'ckeditor/ckeditor/ckeditor.js' %}"></script>
<!-- selects -->
<link href="{% static 'js/select/select2.css' %}" rel="stylesheet"/>
<script src="{% static 'js/select/select2.js' %}"></script>
{% endblock %}
{% block body %}
<form method="post" class="form-horizontal" name="direct_form" id="form1"> {% csrf_token %}
<fieldset>
{% for f in form %}
<legend><i class="icon-edit"></i> Добавить {{ f.label }}</legend>
{% comment %}
Используем multilang шаблон для вывода каждого
переводимого поля формы
{% endcomment %}
<!-- ------------------------------------------ -->
<div class="box span8">
<div class="box-header well">
<h2><i class="icon-pencil"></i></h2>
</div>
<div class="box-content">
<div class="control-group">
<label class="control-label">{{ f.label }}:</label>
<div class="controls">
{{ f }}
</div>
{% endfor %}
</div>
<div class="controls">
<input class="btn btn-primary" type="submit" value="Добавить">
</div>
</div>
</fieldset>
</form>
{% endblock %}