Merge remote-tracking branch 'origin/extra-pages' into extra-pages
# Conflicts: # Palto/Palto/templates/Palto/homepage.html # Palto/Palto/templates/Palto/login.html # Palto/Palto/templates/Palto/profile.html # Palto/Palto/templates/Palto/student_group.html # Palto/Palto/templates/Palto/teaching_session_list.html # Palto/Palto/templates/Palto/teaching_session_view.html # Palto/Palto/templates/Palto/teaching_unit_view.html
This commit is contained in:
commit
d55ac2e4f8
6 changed files with 9 additions and 19 deletions
|
@ -1,9 +1,9 @@
|
||||||
{% extends "Palto/base/base-features.html" %}
|
{% extends "Palto/base.html" %}
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
{{ block.super }}
|
|
||||||
|
|
||||||
<h1>Palto</h1>
|
<h1>Palto</h1>
|
||||||
|
|
||||||
<p>Palto est un outil de gestion des présences d'élèves dans vos établissements scolaires.</p>
|
<p>
|
||||||
|
Palto est un outil de gestion des présences d'élèves dans vos établissements scolaires.
|
||||||
|
</p>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
{% extends "Palto/base/base-features.html" %}
|
{% extends "Palto/base.html" %}
|
||||||
{% load dict_tags %}
|
{% load dict_tags %}
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
{{ block.super }}
|
|
||||||
|
|
||||||
{{ profile.username }}
|
{{ profile.username }}
|
||||||
{{ profile.email }}
|
{{ profile.email }}
|
||||||
{% if profile.is_superuser %}Administrator{% endif %}
|
{% if profile.is_superuser %}Administrator{% endif %}
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
{% extends "Palto/base/base-features.html" %}
|
{% extends "Palto/base.html" %}
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
{{ block.super }}
|
|
||||||
|
|
||||||
{# group's information #}
|
{# group's information #}
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
{% extends "Palto/base/base-features.html" %}
|
{% extends "Palto/base.html" %}
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
{{ block.super }}
|
|
||||||
|
|
||||||
{# table of all the sessions #}
|
{# table of all the sessions #}
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
{% extends "Palto/base/base-features.html" %}
|
{% extends "Palto/base.html" %}
|
||||||
{% load dict_tags %}
|
{% load dict_tags %}
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
{{ block.super }}
|
|
||||||
|
|
||||||
{# session's information #}
|
{# session's information #}
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
{% extends "Palto/base/base-features.html" %}
|
{% extends "Palto/base.html" %}
|
||||||
{% load dict_tags %}
|
{% load dict_tags %}
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
{{ block.super }}
|
|
||||||
|
|
||||||
{# unit's information #}
|
{# unit's information #}
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
|
|
Loading…
Reference in a new issue