2023-01-27 23:11:10 +00:00
|
|
|
<div class="blog-box">
|
|
|
|
<h3 class="problem-feed-name">
|
|
|
|
<a href="{{ ticket.linked_item.get_absolute_url() }}">
|
|
|
|
{{ ticket.linked_item|item_title }}</a>
|
|
|
|
·
|
|
|
|
<a href="{{ url('ticket', ticket.id) }}">
|
|
|
|
{{ ticket.title }}
|
|
|
|
</a>
|
|
|
|
</h3>
|
|
|
|
{% with author=ticket.user %}
|
2023-02-06 17:26:04 +00:00
|
|
|
{% if author %}
|
|
|
|
<div class="problem-feed-info-entry">
|
|
|
|
<i class="fa fa-pencil-square-o fa-fw"></i>
|
|
|
|
<span class="pi-value">{{ link_user(author) }}</span>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
2023-01-27 23:11:10 +00:00
|
|
|
{% endwith %}
|
|
|
|
<div class="problem-feed-types">
|
|
|
|
<i class="fa fa-tag"></i>
|
|
|
|
{{link_user(ticket.messages.last().user)}} {{_(' replied')}}
|
|
|
|
</div>
|
|
|
|
<div class='blog-description content-description'>
|
|
|
|
{{ ticket.messages.last().body|markdown(lazy_load=True)|reference|str|safe }}
|
2023-02-06 17:26:04 +00:00
|
|
|
<div class="show-more"> {{_("...More")}} </div>
|
2023-01-27 23:11:10 +00:00
|
|
|
</div>
|
2022-03-21 21:09:16 +00:00
|
|
|
</div>
|