20 lines
732 B
HTML
20 lines
732 B
HTML
{{ templates.repo_sender_prefix }}
|
|
<a data-mautrix-exclude-plaintext href="{{ object_attributes.url }}">
|
|
{%- if object_attributes.type == CommentType.DISCUSSION_NOTE -%}
|
|
replied to a thread
|
|
{%- else -%}
|
|
commented
|
|
{%- endif -%}
|
|
</a> on
|
|
{% if issue and object_attributes.noteable_type == NoteableType.ISSUE %}
|
|
{{ issue_link(issue, important=false) }}
|
|
{% elif merge_request and object_attributes.noteable_type == NoteableType.MERGE_REQUEST %}
|
|
{{ merge_request_link(merge_request, important=false) }}
|
|
{% else %}
|
|
{# unsupported comment target #}
|
|
{% do abort() %}
|
|
{% endif %}
|
|
<br/>
|
|
{% if object_attributes.description %}
|
|
<blockquote>{{ object_attributes.description|markdown }}</blockquote>
|
|
{% endif %}
|