{% extends 'base.html' %} {% block title %}{{ course.name }}|настройки{% endblock %} {% block scripts %} function uploaded() { document.getElementById('is_uploaded').style.display = 'block'; document.getElementById('is_uploaded').nodeValue = document.getElementById('file-upload').nodeValue; } {% endblock %} {% block styles %} input[type="file"] { display: none; } {% endblock %} {% block content %}
Фамилия | Имя | Отчество | Группа | Почта | Роль | |
---|---|---|---|---|---|---|
{{ user.userinfo.surname }} | {{ user.userinfo.name }} | {{ user.userinfo.middle_name }} | {{ user.userinfo.group }} | {{ user.userinfo.user.email }} | {% with role=user.role %} {% if role == 'Студент' or role == 'Ассистент' %} {% else %} {{ user.role }} {% endif %} {% endwith %} |