uclouvain/osis-dissertation

View on GitHub
templates/dissertations_wait_list.html

Summary

Maintainability
Test Coverage
{% extends "layout.html" %}
{% load static %}
{% load i18n %}

{% comment "License" %}
 * OSIS stands for Open Student Information System. It's an application
 * designed to manage the core business of higher education institutions,
 * such as universities, faculties, institutes and professional schools.
 * The core business involves the administration of students, teachers,
 * courses, programs and so on.
 *
 * Copyright (C) 2015-2019 Université catholique de Louvain (http://www.uclouvain.be)
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * A copy of this license - GNU General Public License - is available
 * at the root of the source code of this program.  If not,
 * see http://www.gnu.org/licenses/.
{% endcomment %}

{% block breadcrumb %}
    <li><a href="{% url 'studies' %}" id="lnk_studies">{% trans "Students' path" %}</a></li>
    <li id="lnk_cohorts_management"><a href="{% url 'cohorts_management' %}">{% trans "Cohorts management" %}</a></li>
    <li><a href="{% url 'dissertations' %}" id="lnk_dissertations">{% trans 'Dissertations' %}</a></li>
    <li class="active">{% trans 'Dissertations' %}</li>
{% endblock %}
{% block content %}
  <div class="page-header">
    <h2>{% trans 'Dissertations' %}</h2>
  </div>
  <ul class="nav nav-tabs">
    <li><a href="{% url 'dissertations_list' %}">{% trans 'All dissertations' %}</a></li>
    <li class="active"><a href="#">{% trans 'Waiting promotor' %}</a></li>
  </ul>
  <div class="panel panel-default">
    <div class="panel-body">
        <div class="row">
          <div class="col-md-12">
              <div class="panel panel-default">
                <div class="panel-heading">
                    <h3 class="panel-title">{% trans 'Dissertations as promotor' %}</h3>
                </div>
                  <table class="table table-hover">
                    <tr>
                      <th>{% trans 'Title' context 'dissertation' %}</th>
                      <th>{% trans 'Author'%}</th>
                      <th>{% trans 'Status' context 'dissertation' %}</th>
                      <th>{% trans 'Program'%}</th>
                      <th>{% trans 'year beginning'%}</th>
                    </tr>
                    {% for dissert in disserts %}
                      <tr>
                        <td>
                            <a href="{% url 'dissertations_detail' pk=dissert.pk %}">
                                {{ dissert.title }}
                            </a>
                        </td>
                        <td>{{ dissert.author }}</td>
                        <td>
                            {% if dissert.status == 'DRAFT' %}
                            <span class="label label-default">{{ dissert.get_status_display }}</span>
                            {% elif dissert.status == 'DIR_SUBMIT' %}
                            <span class="label label-primary">{{ dissert.get_status_display }}</span>
                            {% elif dissert.status == 'DIR_OK' %}
                            <span class="label label-success">{{ dissert.get_status_display }}</span>
                            {% elif dissert.status == 'DIR_KO' %}
                            <span class="label label-danger">{{ dissert.get_status_display }}</span>
                            {% elif dissert.status == 'COM_SUBMIT' %}
                            <span class="label label-primary">{{ dissert.get_status_display }}</span>
                            {% elif dissert.status == 'COM_OK' %}
                            <span class="label label-default">{{ dissert.get_status_display }}</span>
                            {% elif dissert.status == 'COM_KO' %}
                            <span class="label label-default">{{ dissert.get_status_display }}</span>
                            {% elif dissert.status == 'EVA_SUBMIT' %}
                            <span class="label label-primary">{{ dissert.get_status_display }}</span>
                            {% elif dissert.status == 'EVA_OK' %}
                            <span class="label label-default">{{ dissert.get_status_display }}</span>
                            {% elif dissert.status == 'EVA_KO' %}
                            <span class="label label-default">{{ dissert.get_status_display }}</span>
                            {% elif dissert.status == 'TO_RECEIVE' %}
                            <span class="label label-default">{{ dissert.get_status_display }}</span>
                            {% elif dissert.status == 'TO_DEFEND' %}
                            <span class="label label-default">{{ dissert.get_status_display }}</span>
                            {% elif dissert.status == 'DEFENDED' %}
                            <span class="label label-default">{{ dissert.get_status_display }}</span>
                            {% elif dissert.status == 'ENDED' %}
                            <span class="label label-default">{{ dissert.get_status_display }}</span>
                            {% endif %}
                        </td>
                        <td>{{ dissert.education_group_year.acronym }}</td>
                        <td>{{ dissert.education_group_year.academic_year }}</td>
                      </tr>
                    {% endfor %}
                  </table>
              </div>
          </div>
      </div>
    </div>
  </div>
{% endblock %}