css des petits cours

This commit is contained in:
Qwann 2016-07-29 11:33:26 +02:00
parent 3da7f0074f
commit e87d55dc7e
6 changed files with 36 additions and 33 deletions

View file

@ -1,35 +1,38 @@
{% extends "base_title_petitscours.html" %}
{% load staticfiles %}
{% block page_size %}col-sm-8{% endblock %}
{% block realcontent %}
<h3>Demande de petits cours</h3>
<h2>Demande de petits cours</h2>
{% include "details_demande_petit_cours_infos.html" %}
<hr />
<ul>
<li><strong>Traitée</strong>: <img src="{% if demande.traitee %}{% static "images/yes.png" %}{% else %}{% static "images/no.png" %}{% endif %}" /></li>
<table class="table table-striped">
<tr><td><strong>Traitée</strong></td><td> <img src="{% if demande.traitee %}{% static "images/yes.png" %}{% else %}{% static "images/no.png" %}{% endif %}" /></td></tr>
{% if demande.traitee %}
<li><strong>Traitée par</strong>: {{ demande.traitee_par }}</li>
<li><strong>Traitée le</strong>: {{ demande.processed }}</li>
<li>
<strong>Attributions</strong>:
<tr><td><strong>Traitée par</strong></td><td> {{ demande.traitee_par }}</td></tr>
<tr><td><strong>Traitée le</strong></td><td> {{ demande.processed }}</td></tr>
<tr><td>
<strong>Attributions</strong></td><td>
<ul>
{% for attrib in attributions %}
<li>{{ attrib.user.get_full_name }} pour {{ attrib.matiere }}, {{ attrib.date|date:"d E Y" }}</li>
{% endfor %}
</ul>
</li>
</td>
</tr>
{% endif %}
</ul>
</table>
{% if demande.traitee %}
<div style="text-align: right;">
<form action="{% url "petits-cours-demande-retraitement" demande.id %}">
<input type="submit" value="Retraiter">
<input class="btn btn-primary" type="submit" value="Retraiter">
</form>
</div>
{% else %}
<div style="text-align: right;">
<form action="{% url "petits-cours-demande-traitement" demande.id %}">
<input type="submit" value="Traiter">
<input class="btn btn-primary" type="submit" value="Traiter">
</form>
</div>
{% endif %}

View file

@ -1,14 +1,14 @@
{% load staticfiles %}
<ul>
<li><strong>Date</strong>: {{ demande.created }}</li>
<li><strong>Nom/prénom</strong>: {{ demande.name }}</li>
<li><strong>Email</strong>: {{ demande.email }}</li>
<li><strong>Téléphone</strong>: {{ demande.phone }}</li>
<li><strong>Lieu</strong>: {{ demande.lieu }}</li>
<li><strong>Quand</strong>: {{ demande.quand }}</li>
<li><strong>Fréquence</strong>: {{ demande.freq }}</li>
<li><strong>Matières</strong>: {% for matiere in demande.matieres.all %}{% if forloop.counter0 > 0 %}, {% endif %}{{ matiere }}{% endfor %}</li>
<li><strong>Niveau souhaité</strong>: {{ demande.get_niveau_display }}</li>
<li><strong>Agrégé requis</strong>: <img src="{% if demande.agrege_requis %}{% static "images/yes.png" %}{% else %}{% static "images/no.png" %}{% endif %}" /></li>
<li><strong>Remarques</strong>: {{ demande.remarques }}</li>
</ul>
<table class="table table-striped">
<tr class="danger"><td><strong>Date</strong></td><td> {{ demande.created }}</td></tr>
<tr class="warning"><td><strong>Nom/prénom</strong></td><td> {{ demande.name }}</td></tr>
<tr><td><strong>Email</strong></td><td> {{ demande.email }}</td></tr>
<tr><td><strong>Téléphone</strong></td><td> {{ demande.phone }}</td></tr>
<tr><td><strong>Lieu</strong></td><td> {{ demande.lieu }}</td></tr>
<tr><td><strong>Quand</strong></td><td> {{ demande.quand }}</td></tr>
<tr><td><strong>Fréquence</strong></td><td> {{ demande.freq }}</td></tr>
<tr><td><strong>Matières</strong></td><td> {% for matiere in demande.matieres.all %}{% if forloop.counter0 > 0 %}, {% endif %}{{ matiere }}{% endfor %}</td></tr>
<tr><td><strong>Niveau souhaité</strong></td><td> {{ demande.get_niveau_display }}</td></tr>
<tr><td><strong>Agrégé requis</strong></td><td> <img src="{% if demande.agrege_requis %}{% static "images/yes.png" %}{% else %}{% static "images/no.png" %}{% endif %}" /></td></tr>
<tr><td><strong>Remarques</strong></td><td> {{ demande.remarques }}</td></tr>
</table>

View file

@ -4,11 +4,11 @@
{% block realcontent %}
<h2>Demandes de petits cours</h2>
{% if object_list %}
<table>
<table class="table table-stripped">
<thead>
<th style="width: 30%;">Nom</th>
<th style="width: 30%;">Matières</th>
<th style="width: 20%;">Date</th>
<th>Nom</th>
<th>Matières</th>
<th>Date</th>
<th>Traitée</th>
<th>par</th>
<th></th>
@ -20,7 +20,7 @@
<td>{% for matiere in demande.matieres.all %}{% if forloop.counter0 > 0 %}, {% endif %}{{ matiere }}{% endfor %}</td>
<td>{{ demande.created|date:"d E Y" }}</td>
<td style="text-align: center;"><img src="{% if demande.traitee %}{% static "images/yes.png" %}{% else %}{% static "images/no.png" %}{% endif %}" /></td>
<td>{% if demande.traitee_par %}{{ demande.traitee_par.username }}{% else %}<img src="{% static "images/none.png" %}" />{% endif %}</td>
<td>{% if demande.traitee_par %}{{ demande.traitee_par.username }}{% else %}<span class="glyphicon glyphicon-ban-circle"></span>{% endif %}</td>
<td><a href="{% url "petits-cours-demande-details" demande.id %}" class="see_detail">Détails</a></td>
</tr>
{% endfor %}

View file

@ -1,7 +1,7 @@
{% extends "base_title_petitscours.html" %}
{% block realcontent %}
<h3>Traitement de la demande de petits cours {{ demande.id }}</h3>
<h2>Traitement de la demande de petits cours {{ demande.id }}</h2>
{% include "details_demande_petit_cours_infos.html" %}
<hr />
{% if errors %}
@ -36,7 +36,7 @@
<pre style="margin-top: 15px;">{{ mainmail|safe }}</pre>
<input type="hidden" name="attribdata" value="{{ attribdata }}" />
{% if redo %}<input type="hidden" name="redo" value="1" />{% endif %}
<input type="submit" value="Valider le {% if redo %}re{% endif %}traitement de la demande" />
<input class="btn btn-primary pull-right" type="submit" value="Valider le {% if redo %}re{% endif %}traitement de la demande" />
</form>
{% else %}
<h3>Impossible de trouver des propositions pour cette demande</h3>

View file

@ -2,7 +2,7 @@
{% load staticfiles %}
{% block realcontent %}
<h3>Traitement de la demande de petits cours {{ demande.id }}</h3>
<h2>Traitement de la demande de petits cours {{ demande.id }}</h2>
{% include "details_demande_petit_cours_infos.html" %}
<hr />
<div class="error">

View file

@ -1,7 +1,7 @@
{% extends "base_title_petitscours.html" %}
{% block realcontent %}
<h3>Traitement de la demande de petits cours {{ demande.id }}</h3>
<h2>Traitement de la demande de petits cours {{ demande.id }}</h2>
<div class="success" style="margin: 15px 0px; font-size: 1.4em;">Demande {{ demande.id }} de {{ demande.name }} {% if redo %}re{% endif %}traitée avec succès !</div>
<a href="{% url "petits-cours-demandes-list" %}">Retour à la liste des demandes</a>
{% endblock %}