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

View file

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

View file

@ -4,11 +4,11 @@
{% block realcontent %} {% block realcontent %}
<h2>Demandes de petits cours</h2> <h2>Demandes de petits cours</h2>
{% if object_list %} {% if object_list %}
<table> <table class="table table-stripped">
<thead> <thead>
<th style="width: 30%;">Nom</th> <th>Nom</th>
<th style="width: 30%;">Matières</th> <th>Matières</th>
<th style="width: 20%;">Date</th> <th>Date</th>
<th>Traitée</th> <th>Traitée</th>
<th>par</th> <th>par</th>
<th></th> <th></th>
@ -20,7 +20,7 @@
<td>{% for matiere in demande.matieres.all %}{% if forloop.counter0 > 0 %}, {% endif %}{{ matiere }}{% endfor %}</td> <td>{% for matiere in demande.matieres.all %}{% if forloop.counter0 > 0 %}, {% endif %}{{ matiere }}{% endfor %}</td>
<td>{{ demande.created|date:"d E Y" }}</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 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> <td><a href="{% url "petits-cours-demande-details" demande.id %}" class="see_detail">Détails</a></td>
</tr> </tr>
{% endfor %} {% endfor %}

View file

@ -1,7 +1,7 @@
{% extends "base_title_petitscours.html" %} {% extends "base_title_petitscours.html" %}
{% block realcontent %} {% 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" %} {% include "details_demande_petit_cours_infos.html" %}
<hr /> <hr />
{% if errors %} {% if errors %}
@ -36,7 +36,7 @@
<pre style="margin-top: 15px;">{{ mainmail|safe }}</pre> <pre style="margin-top: 15px;">{{ mainmail|safe }}</pre>
<input type="hidden" name="attribdata" value="{{ attribdata }}" /> <input type="hidden" name="attribdata" value="{{ attribdata }}" />
{% if redo %}<input type="hidden" name="redo" value="1" />{% endif %} {% 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> </form>
{% else %} {% else %}
<h3>Impossible de trouver des propositions pour cette demande</h3> <h3>Impossible de trouver des propositions pour cette demande</h3>

View file

@ -2,7 +2,7 @@
{% load staticfiles %} {% load staticfiles %}
{% block realcontent %} {% 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" %} {% include "details_demande_petit_cours_infos.html" %}
<hr /> <hr />
<div class="error"> <div class="error">

View file

@ -1,7 +1,7 @@
{% extends "base_title_petitscours.html" %} {% extends "base_title_petitscours.html" %}
{% block realcontent %} {% 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> <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> <a href="{% url "petits-cours-demandes-list" %}">Retour à la liste des demandes</a>
{% endblock %} {% endblock %}