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.
24 lines
834 B
24 lines
834 B
{% 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>
|
|
{# ajax #}
|
|
<script src="{% static 'custom_js/file_post_ajax.js' %}"></script>
|
|
<script src="{% static 'custom_js/select_tag.js' %}"></script>
|
|
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<form method="post" class="form-horizontal" name="form2" id="form2"> {% csrf_token %}
|
|
{{ form.as_p }}
|
|
<div class="controls">
|
|
<input class="btn btn-primary" type="submit" value="Добавить">
|
|
<input type="reset" class="btn" value="Отменить" data-dismiss="modal">
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|
|
|