page styles updated

This commit is contained in:
Serghei Mihai 2014-04-02 09:56:42 +02:00
parent 07de57f5c8
commit af0bcab40e
2 changed files with 14 additions and 5 deletions

View File

@ -8,8 +8,10 @@
{% block appbar %}
<h2>Agenda</h2>
<a href="../..">Retourner à l'accueil</a>
<button class="newevent" data-hour="" data-url="{% url 'new-event' service=service date=date %}">Nouvel événement</button>
<button class="newrdv" data-hour="" data-url="{% url 'nouveau-rdv' service=service date=date %}">Nouveau rendez-vous patient</button>
<div class="new">
<button class="newevent" data-hour="" data-url="{% url 'new-event' service=service date=date %}">Nouvel événement</button>
<button class="newrdv" data-hour="" data-url="{% url 'nouveau-rdv' service=service date=date %}">Nouveau rendez-vous patient</button>
</div>
{% endblock %}
{% block beforecontent %}
@ -73,7 +75,7 @@
<li class="initials">&nbsp;</li>
{% for start_time in disponibility_start_times %}
<li class="hour-mark">
{{ start_time|stringformat:"02d" }}:00
{{ start_time|stringformat:"02d" }}
</li>
{% endfor %}
</ul>
@ -104,8 +106,10 @@
{% endfor %}
</ul>
</div>
</div>
<div class="new">
<button class="newrdv" data-hour="" data-url="{% url 'nouveau-rdv' service=service date=date %}">Nouveau rendez-vous patient</button>
<button class="newevent" data-hour="" data-url="{% url 'new-event' service=service date=date %}">Nouvel événement</button>
</div>
</td>
</tr>
</tbody>

View File

@ -189,4 +189,9 @@ li.away {
#extra-top-links a:hover {
color: #000;
text-decoration: underline;
}
div.new {
margin: .4em 0;
float: right;
}