dossiers: change phone icons

This commit is contained in:
Jérôme Schneider 2014-04-02 17:09:44 +02:00
parent 30ba60e179
commit 38abb57644
3 changed files with 8 additions and 6 deletions

View File

@ -63,7 +63,7 @@
<ul class="ajax_messages" style="display: none;"></ul>
<input type="checkbox" data-id="{{ address.id }}" class="place_of_life" {% if address.place_of_life %}checked{% endif %}>Lieu de vie</input>
</div>
{% if address.phone %}<p><span class="icon-home-space">{{ address.phone }}</span></p>{% endif %}
{% if address.phone %}<p><span class="icon-phone">{{ address.phone }}</span></p>{% endif %}
{% if address.comment %}<p><label>Commentaire :</label>{{ address.comment }}</p>{% endif %}
{% if not address.phone and not address.comment %}<p>&nbsp;<!-- intentionaly empty --></p>{% endif %}
{% for contact in address.patientcontact_set.all %}

View File

@ -5,12 +5,12 @@
{% endif %}
{% if contact.mobile %}
<li>
<span class="icon-user-space">{{ contact.mobile }} (perso)</span>
<span class="icon-mobile">{{ contact.mobile }} (perso)</span>
</li>
{% endif %}
{% if contact.phone %}
<li>
<span class="icon-user-space">{{ contact.phone }} (pro)</span>
<span class="icon-phone">{{ contact.phone }} (pro)</span>
</li>
{% endif %}
{% if contact.email %}

View File

@ -1267,9 +1267,11 @@ div.pagination {
.icon-user-space:before { content: "\f007 "; }
.icon-circle-arrow-left:before { content: "\f0a8"; }
.icon-circle-arrow-right:before { content: "\f0a9"; }
.icon-remove:before { content: "\f00d"; }
.icon-warning-sign:before { content: "\f071" }
.icon-ok:before {content: "\f00c"}
.icon-remove:before { content: "\f00d"; }
.icon-warning-sign:before { content: "\f071"; }
.icon-ok:before { content: "\f00c"; }
.icon-mobile:before { content: "\f10b"; margin-right: 4px; }
.icon-phone:before { content: "\f095"; margin-right: 4px; }
/* periodic event search form */