Skip to content
Snippets Groups Projects
index.twig 1.02 KiB
Newer Older
{% extends "office/disciplines/!base" %}

{% block office_content %}

    <p>Всего: {{ Disciplines | length }}</p>

    <div class="officeList">
        <table style="table-layout: fixed; width: 100%;">
            <thead>
            <tr>
                <td style="width: 70px;"></td>
                <td>Название</td>
                <td style="width: 250px;">Автор</td>
            </tr>
            </thead>
            <tbody>
            {% for discipline in Disciplines %}
                <tr>
                    <td style="text-align: center;">{{ discipline.ID }}</td>
                    <td style="white-space: normal;"><a href="{{ URL.site("discipline/") }}/{{ discipline.ID }}/structure">{{ discipline.SubjectName }}</a></td>
                    <td><a href="{{ URL.site("office/teachers/profile/") }}/{{ Teachers[discipline.ID].ID }}">{{ Text.abbreviateName(Teachers[discipline.ID]) }}</a></td>
                </tr>
            {% endfor %}
            </tbody>
        </table>
    </div>