diff --git a/helpdesk/templates/helpdesk/ticket.html b/helpdesk/templates/helpdesk/ticket.html
index f914d843..5b87d5e7 100644
--- a/helpdesk/templates/helpdesk/ticket.html
+++ b/helpdesk/templates/helpdesk/ticket.html
@@ -74,53 +74,59 @@ $(document).on('change', ':file', function() {
{% include "helpdesk/ticket_desc_table.html" %}
{% if ticket.followup_set.all %}
-
{% trans "Follow-Ups" %}
{% load ticket_to_link %}
-{% for followup in ticket.followup_set.all %}
-{% if helpdesk_settings.HELPDESK_FOLLOWUP_MOD %}
-
-
- {{ followup.user.get_full_name }} {{ followup.date }} ({{ followup.date|naturaltime }}) {{ followup.title }}
- {% if not followup.public %} ({% trans "Private" %}){% endif %}
- {% if helpdesk_settings.HELPDESK_SHOW_EDIT_BUTTON_FOLLOW_UP %}
- {% if followup.user and request.user == followup.user and not followup.ticketchange_set.all %}
-
- {% endif %}
- {% endif %}
- {% if user.is_superuser and helpdesk_settings.HELPDESK_SHOW_DELETE_BUTTON_SUPERUSER_FOLLOW_UP %}
-
- {% endif %}
+
+
+
{% trans "Follow-Ups" %}
-{% else %}
-
-
- {{ followup.title }} {% if followup.user %}by {{ followup.user }}{% endif %} {{ followup.date|naturaltime }}{% if not followup.public %} ({% trans "Private" %}){% endif %}
- {% if helpdesk_settings.HELPDESK_SHOW_EDIT_BUTTON_FOLLOW_UP %}
- {% if followup.user and request.user == followup.user and not followup.ticketchange_set.all %}
-
- {% endif %}
- {% endif %}
- {% if user.is_superuser and helpdesk_settings.HELPDESK_SHOW_DELETE_BUTTON_SUPERUSER_FOLLOW_UP %}
-
- {% endif %}
+
+
+
+ {% for followup in ticket.followup_set.all %}
+
+
+
+
+
{{ followup.title }}
+
{% if followup.user %}by {{ followup.user }}{% endif %} {{ followup.date|naturaltime }}{% if not followup.public %} ({% trans "Private" %}){% endif %}
+
+
+
{% if followup.comment %}{{ followup.comment|force_escape|urlizetrunc:50|num_to_link|linebreaksbr }}{% endif %}
+ {% for change in followup.ticketchange_set.all %}
+ {% if forloop.first %}
{% endif %}
+
{% blocktrans with change.field as field and change.old_value as old_value and change.new_value as new_value %}Changed {{ field }} from {{ old_value }} to {{ new_value }}.{% endblocktrans %}
+ {% if forloop.last %}
{% endif %}
+ {% endfor %}
+ {% for attachment in followup.attachment_set.all %}{% if forloop.first %}
+ {% if helpdesk_settings.HELPDESK_SHOW_EDIT_BUTTON_FOLLOW_UP %}
+ {% if followup.user and request.user == followup.user and not followup.ticketchange_set.all %}
+
+ {% endif %}
+ {% endif %}
+ {% if user.is_superuser and helpdesk_settings.HELPDESK_SHOW_DELETE_BUTTON_SUPERUSER_FOLLOW_UP %}
+
+ {% endif %}
+
+
+
+
+ {% endfor %}
+
+
-{% endif %}
-{% if followup.comment %}{{ followup.comment|force_escape|urlizetrunc:50|num_to_link|linebreaksbr }}{% endif %}
-{% for change in followup.ticketchange_set.all %}
-{% if forloop.first %}
{% endif %}
-
{% blocktrans with change.field as field and change.old_value as old_value and change.new_value as new_value %}Changed {{ field }} from {{ old_value }} to {{ new_value }}.{% endblocktrans %}
-{% if forloop.last %}
{% endif %}
-{% endfor %}
-{% for attachment in followup.attachment_set.all %}{% if forloop.first %}