{% extends "messages/base.html" %} {% block content %}
| Published | {{ message.publish_start|date:"DATETIME_FORMAT_SHORT" }} |
|---|---|
| Author | {{ message.author }} |
| Description | {{ message.description }} |
| Technical description | {{ message.tech_description }} |
| Related maintenance tasks |
{% for task_mapper in message.maintenance_tasks.all %}
|
| Expires | {{ message.publish_end|date:"DATETIME_FORMAT_SHORT" }} {% if message.publish_end > now %} Expire now {% endif %} |
| Replaces message | {{ message.replaces_message.title }}, from {{ message.replaces_message.publish_start|date:"DATETIME_FORMAT_SHORT" }}, by {{ message.replaces_message.author }} |
| Replaced by | {{ item.title }}, from {{ item.publish_start|date:"DATETIME_FORMAT_SHORT" }}, by {{ item.author }} |