{% extends TICKETS_BASE_TEMPLATE %} {% load ticket_notifications_tags %} {% block title %}Ticket Notifications{% endblock %} {% block content %}
{% if n.notification_type == 'ticket_assigned' %} New assignment {% elif n.notification_type == 'ticket_reassigned' %} Reassigned {% endif %} {{ n.message }}
{{ n.created_at|date:"d M Y, H:i:s" }} {% if n.actor %} ยท from {{ n.actor.first_name }} {{ n.actor.last_name }}{% endif %}