Skip to content

Commit

Permalink
Added link tags to contact info
Browse files Browse the repository at this point in the history
  • Loading branch information
marcorichetta committed Sep 4, 2024
1 parent cddeec6 commit 4571986
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions joboffers/templates/joboffers/joboffer_overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,19 +50,19 @@ <h4 class="mt-0">
{% if obj.contact_mail %}
<li>
<span class="glyphicon glyphicon-envelope" aria-hidden="true"></span>
{{ obj.contact_mail }}
<a href="mailto:{{ object.contact_mail }}" target="_blank" rel="noopener noreferrer">{{ object.contact_mail }}</a>
</li>
{% endif %}
{% if obj.contact_url %}
<li>
<span class="glyphicon glyphicon-link" aria-hidden="true"></span>
{{ object.contact_url }}
<a href="{{ object.contact_url }}" target="_blank" rel="noopener noreferrer">{{ object.contact_url }}</a>
</li>
{% endif %}
{% if obj.contact_phone %}
<li>
<span class="glyphicon glyphicon-earphone" aria-hidden="true"></span>
{{ object.contact_phone }}
<a href="tel:{{ object.contact_phone }}" target="_blank" rel="noopener noreferrer">{{ object.contact_phone }}</a>
</li>
{% endif %}
</ul>
Expand Down

0 comments on commit 4571986

Please sign in to comment.