|
|
|
<div class="row">
|
|
|
|
<div class="column width-80">
|
|
|
|
<a class="margin-r-4-px" href="{{ path('user_info', { userId : user.id }) }}">
|
|
|
|
<img class="border-radius-50 border-color-default vertical-align-middle" src="{{ user.identicon }}" alt="{{ 'identicon' | trans }}" />
|
|
|
|
</a>
|
|
|
|
{{ 'have deleted sensitive edition' | trans }}
|
|
|
|
{% if torrent.sensitive.exist %}
|
|
|
|
<a href="{{ path('torrent_sensitive_edit', { torrentId : torrent.id, torrentSensitiveId : torrent.sensitive.id }) }}">
|
|
|
|
#{{ torrent.sensitive.id }}
|
|
|
|
</a>
|
|
|
|
{% else %}
|
|
|
|
#{{ torrent.sensitive.id }}
|
|
|
|
{% endif %}
|
|
|
|
{{ 'for torrent' | trans }}
|
|
|
|
{% if session.user.moderator or session.user.owner %}
|
|
|
|
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
|
|
|
|
{{ torrent.name }}
|
|
|
|
</a>
|
|
|
|
{% if torrent.approved == false %}
|
|
|
|
#{{ torrent.id }} ({{ 'waiting for approve' | trans }})
|
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
|
|
|
{% if torrent.status == false %}
|
|
|
|
#{{ torrent.id }} ({{ 'disabled' | trans }})
|
|
|
|
{% elseif torrent.approved == false %}
|
|
|
|
#{{ torrent.id }} ({{ 'waiting for approve' | trans }})
|
|
|
|
{% elseif torrent.sensitive == true and session.user.sensitive == true %}
|
|
|
|
#{{ torrent.id }}
|
|
|
|
{% else %}
|
|
|
|
<a href="{{ path('torrent_info', { torrentId : torrent.id }) }}">
|
|
|
|
{{ torrent.name }}
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<div class="column width-20 text-right">
|
|
|
|
{{ added | format_ago }}
|
|
|
|
</div>
|
|
|
|
</div>
|