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.
18 lines
604 B
18 lines
604 B
{% extends "templates/lilcity/edit_index.html" %}
|
|
{% load static %}
|
|
|
|
{% block title %}
|
|
{% if object %}
|
|
Редактирование конкурса {{ object.title }}
|
|
{% else %}
|
|
Создание конкурса
|
|
{% endif %}
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
|
<contest-redactor {% if object and object.id %}:contest-id="{{ object.id }}"{% endif %}></contest-redactor>
|
|
{% endblock content %}
|
|
{% block foot %}
|
|
<script type="text/javascript" src="{% static 'contestRedactor.js' %}"></script>
|
|
<link rel="stylesheet" href="{% static 'contestRedactor.css' %}" />
|
|
{% endblock foot %}
|
|
|