ghost
1 year ago
7 changed files with 544 additions and 243 deletions
@ -0,0 +1,85 @@ |
|||||||
|
{% extends 'default/layout.html.twig' %} |
||||||
|
{% block title %}{{'Edit torrent locales'|trans }} - {{ name }}{% endblock %} |
||||||
|
{% block main_content %} |
||||||
|
<div class="padding-24-px margin-y-8-px border-radius-3-px background-color-night"> |
||||||
|
<div class="margin-b-24-px padding-b-16-px border-bottom-default"> |
||||||
|
<h1> |
||||||
|
{{'Edit locales for torrent'|trans }} |
||||||
|
<a href="{{ path('torrent_info', { torrentId : torrentId }) }}">#{{ torrentId }}</a> |
||||||
|
</h1> |
||||||
|
</div> |
||||||
|
<form name="locales" method="post" action="{{ path('torrent_edit_locales', { torrentId : torrentId }) }}"> |
||||||
|
<div class="margin-y-16-px"> |
||||||
|
<label for="locales"> |
||||||
|
{{'Content language'|trans }} |
||||||
|
</label> |
||||||
|
<sub class="opacity-0 parent-hover-opacity-09" title="{{ form.locales.attribute.placeholder }}"> |
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" fill="currentColor" viewBox="0 0 16 16"> |
||||||
|
<path d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16zm.93-9.412-1 4.705c-.07.34.029.533.304.533.194 0 .487-.07.686-.246l-.088.416c-.287.346-.92.598-1.465.598-.703 0-1.002-.422-.808-1.319l.738-3.468c.064-.293.006-.399-.287-.47l-.451-.081.082-.381 2.29-.287zM8 5.5a1 1 0 1 1 0-2 1 1 0 0 1 0 2z"/> |
||||||
|
</svg> |
||||||
|
</sub> |
||||||
|
{% for error in form.locales.error %} |
||||||
|
<div class="text-color-red margin-y-8-px"> |
||||||
|
{{ error }} |
||||||
|
</div> |
||||||
|
{% endfor %} |
||||||
|
<div class="padding-t-8-px"> |
||||||
|
<select class="width-100 padding-x-0" name="locales[]" multiple="multiple"> |
||||||
|
{% for locale in locales %} |
||||||
|
{% if locale in form.locales.attribute.value %} |
||||||
|
<option class="padding-x-8-px padding-y-8-px" value="{{ locale }}" selected="selected"> |
||||||
|
{{ locale|locale_name(locale)|u.title }} |
||||||
|
</option> |
||||||
|
{% else %} |
||||||
|
<option class="padding-x-8-px padding-y-8-px" value="{{ locale }}"> |
||||||
|
{{ locale|locale_name(locale)|u.title }} |
||||||
|
</option> |
||||||
|
{% endif %} |
||||||
|
{% endfor %} |
||||||
|
{# |
||||||
|
<option class="padding-x-8-px padding-y-8-px" value="other"> |
||||||
|
{{'Other...'|trans }} |
||||||
|
</option> |
||||||
|
#} |
||||||
|
</select> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<div class="text-right"> |
||||||
|
<a class="margin-r-8-px" href="{{ path('torrent_info', { torrentId : torrentId }) }}"> |
||||||
|
{{'cancel'|trans }} |
||||||
|
</a> |
||||||
|
<input class="button-green" type="submit" value="{{'Submit'|trans }}" /> |
||||||
|
</div> |
||||||
|
</form> |
||||||
|
</div> |
||||||
|
{% for edition in editions %} |
||||||
|
<div class="padding-x-24-px padding-y-16-px margin-y-8-px border-radius-3-px {% if edition.active %}background-color-night-light{% else %}background-color-night{% endif %} "> |
||||||
|
{% if edition.active %} |
||||||
|
{{ edition.added | format_ago }} |
||||||
|
{% else %} |
||||||
|
<a href="{{ path('torrent_edit_locales', { torrentId : torrentId, torrentLocalesId : edition.id }) }}"> |
||||||
|
{{ edition.added | format_ago }} |
||||||
|
</a> |
||||||
|
{% endif %} |
||||||
|
{{ 'by'|trans }} |
||||||
|
<a href="{{ path('user_info', { id : edition.user.id }) }}"> |
||||||
|
<img class="border-radius-50 border-color-green vertical-align-middle" src="{{ edition.user.identicon }}" alt="{{'identicon'|trans }}" /> |
||||||
|
</a> |
||||||
|
<div class="float-right"> |
||||||
|
{% if edition.approved %} |
||||||
|
<span title="{{'Approved'|trans }}"> |
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" viewBox="0 0 16 16"> |
||||||
|
<path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z"/> |
||||||
|
</svg> |
||||||
|
</span> |
||||||
|
{% else %} |
||||||
|
<span title="{{'Waiting for approve'|trans }}"> |
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-hourglass" viewBox="0 0 16 16"> |
||||||
|
<path d="M2 1.5a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-1v1a4.5 4.5 0 0 1-2.557 4.06c-.29.139-.443.377-.443.59v.7c0 .213.154.451.443.59A4.5 4.5 0 0 1 12.5 13v1h1a.5.5 0 0 1 0 1h-11a.5.5 0 1 1 0-1h1v-1a4.5 4.5 0 0 1 2.557-4.06c.29-.139.443-.377.443-.59v-.7c0-.213-.154-.451-.443-.59A4.5 4.5 0 0 1 3.5 3V2h-1a.5.5 0 0 1-.5-.5zm2.5.5v1a3.5 3.5 0 0 0 1.989 3.158c.533.256 1.011.791 1.011 1.491v.702c0 .7-.478 1.235-1.011 1.491A3.5 3.5 0 0 0 4.5 13v1h7v-1a3.5 3.5 0 0 0-1.989-3.158C8.978 9.586 8.5 9.052 8.5 8.351v-.702c0-.7.478-1.235 1.011-1.491A3.5 3.5 0 0 0 11.5 3V2h-7z"/> |
||||||
|
</svg> |
||||||
|
</span> |
||||||
|
{% endif %} |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
{% endfor %} |
||||||
|
{% endblock %} |
Loading…
Reference in new issue