diff --git a/smash/web/templates/includes/contact_attempts_box.html b/smash/web/templates/includes/contact_attempts_box.html index 61637ffc24ca8100366c7329b51727b0e50bdac6..84ae838a56d3406957882609f098ffce761f11cc 100644 --- a/smash/web/templates/includes/contact_attempts_box.html +++ b/smash/web/templates/includes/contact_attempts_box.html @@ -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"