{% extends "base.html" %} {% block title %}{{ _('Edit Comment') }} - {{ app_name }}{% endblock %} {% block content %}

{{ _('Edit Comment') }}

{{ _('Back') }}
{{ _('Editing comment on:') }} {% if comment.project %} {{ comment.project.name }} {% elif comment.task %} {{ comment.task.name }} {% endif %}
{{ (comment.author.full_name or comment.author.username)[0].upper() }}
{{ comment.author.full_name or comment.author.username }}
{{ _('Originally posted on') }} {{ comment.created_at.strftime('%B %d, %Y at %I:%M %p') }} {% if comment.created_at != comment.updated_at %}
{{ _('Last edited on') }} {{ comment.updated_at.strftime('%B %d, %Y at %I:%M %p') }} {% endif %}
{{ _('You can use line breaks to format your comment.') }}
{{ _('Cancel') }}
{% endblock %}