agenda: useless buttons deleted, prevent displaying "LOADING" when loading schedules

This commit is contained in:
Serghei Mihai 2014-04-02 15:02:20 +02:00
parent 277ad21db3
commit f7ac9f1816
2 changed files with 7 additions and 6 deletions

View File

@ -90,7 +90,7 @@
<li style="display: none" class="worker-{{ worker.id }} agenda">
<a id="worker-{{ worker.id }}" href="{% url "ajax-worker-tab" service date worker.id %}" class="tab">
{{ worker.first_name }}
<span class="lastname">{{ worker.last_name }}</span>
<div class="lastname">{{ worker.last_name }}</div>
</a>
<a href="#" style="padding: 3px;cursor: auto;" class="close-tab" data-target="worker-{{ worker.id }}"><span class="ui-icon ui-icon-circle-close"></span></a>
</li>
@ -106,10 +106,6 @@
{% endfor %}
</ul>
</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

@ -181,7 +181,7 @@ li.away {
}
#extra-top-links a:link, #extra-top-links a:visited{
color: #555;
color: #000;
text-decoration: none;
font: bold .8em Arial;
}
@ -194,4 +194,9 @@ li.away {
div.new {
margin: .4em 0;
float: right;
}
div.lastname {
text-transform: uppercase;
display: inline;
}