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.
13 lines
854 B
13 lines
854 B
{% extends "templates/lilcity/edit_index.html" %}
|
|
{% load static %}
|
|
{% block title %}{% if course %}Редактирование курса {{ course.title }}{% else %}Создание курса{% endif %}{% endblock title%}
|
|
{% block content %}
|
|
<course-redactor 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 %} |