Skip to content
Snippets Groups Projects
Commit 91bb408a authored by Carlos Vega's avatar Carlos Vega
Browse files

center columns

parent eedf9263
No related branches found
No related tags found
1 merge request!233Feature/provenance
......@@ -27,14 +27,14 @@
<tbody>
{% for contact_attempt in contact_attempts %}
<tr>
<td>{{ contact_attempt.datetime_when }}</td>
<td>{{ contact_attempt.worker }}</td>
<td class="text-center">{{ contact_attempt.datetime_when }}</td>
<td class="text-center">{{ contact_attempt.worker }}</td>
<td class="text-center">{{ contact_attempt.get_type_display }}</td>
<td class="text-center">
<i class="fa {% if contact_attempt.success %}fa-check text-success{% else %}fa-times text-danger{% endif %}"></i>
</td>
<td>{{ contact_attempt.comment }}</td>
<td><a title="edit contact attempt"
<td class="text-center">{{ contact_attempt.comment }}</td>
<td class="text-center"><a title="edit contact attempt"
href="{% url 'web.views.contact_edit' subject.id contact_attempt.id %}{% if appointment_id %}?from_appointment={{ appointment_id }}{% endif %}"
type="button"
class="btn btn-block btn-default"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment