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.
31 lines
919 B
31 lines
919 B
{% extends 'base.html' %}
|
|
{% load static %}
|
|
|
|
{% block body %}
|
|
|
|
<form method="post" class="form-horizontal" enctype="multipart/form-data" name="form1" id="form1"> {% csrf_token %}
|
|
<fieldset>
|
|
<legend><i class="icon-edit"></i> Настройки</legend>
|
|
<div class="box span8">
|
|
<div class="box-header well">
|
|
<h2><i class="icon-pencil"></i> Основные настройки</h2>
|
|
</div>
|
|
<div class="box-content">
|
|
{# key #}
|
|
{% with field='hall_capacity_tmpl' form=form languages=languages %}
|
|
{% include 'c_admin/forms/multilang.html' %}
|
|
{% endwith %}
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="controls">
|
|
<input class="btn btn-large btn-primary" type="submit" value="Добавить">
|
|
<input class="btn btn-large" type="reset" value="Отмена">
|
|
</div>
|
|
|
|
</fieldset>
|
|
</form>
|
|
|
|
|
|
{% endblock %}
|
|
|