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
1019 B
19 lines
1019 B
{% extends "templates/lilcity/edit_index.html" %}
|
|
{% load static %}
|
|
{% block title %}
|
|
{% if object %}
|
|
Редактирование {% if live == 'true' %}стрима{% else %}курса{% endif %} {{ object.title }}
|
|
{% else %}
|
|
Создание {% if live == 'true' %}стрима{% 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_default.jpg' %}{% endif %}"
|
|
author-name="{{ request.user.first_name }} {{ request.user.last_name }}"
|
|
access-token="{{ request.user.auth_token }}"
|
|
{% if object and object.id %}:course-id="{{ object.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 %}
|
|
|