{% 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 }} {% elif comment.quote %} {{ comment.quote.quote_number }} — {{ comment.quote.title }} {% 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|user_datetime }} {% if comment.created_at != comment.updated_at %}
{{ _('Last edited on') }} {{ comment.updated_at|user_datetime }} {% endif %}
{{ _('You can use line breaks to format your comment.') }}
{{ _('Cancel') }}
{% endblock %}