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.
19 lines
1000 B
19 lines
1000 B
{% extends "templates/lilcity/edit_index.html" %}
|
|
{% load static %}
|
|
{% block title %}
|
|
{% if course %}
|
|
Редактирование {% if not live %}курса{% else %}стрима{% endif %} {{ course.title }}
|
|
{% else %}
|
|
Создание {% if not live %}курса{% else %}стрима{% endif %}
|
|
{% endif %}
|
|
{% endblock title%}
|
|
{% block content %}
|
|
<course-redactor :live="{{ live }}" author-picture="{% if request.user.photo %}{{ request.user.photo.url }}{% else %}{% static 'img/user.jpg' %}{% endif %}"
|
|
author-name="{{ request.user.first_name }} {{ request.user.last_name }}"
|
|
access-token="{{ request.user.auth_token }}"
|
|
{% if course and course.id %}:course-id="{{ course.id }}"{% endif %}></course-redactor>
|
|
{% endblock content %}
|
|
{% block foot %}
|
|
<script type="text/javascript" src="{% static "courseRedactor.js" %}"></script>
|
|
<link rel="stylesheet" href="{% static "courseRedactor.css" %}" />
|
|
{% endblock foot %}
|
|
|