Browse Source

update torrent forms

main
ghost 1 year ago
parent
commit
daf8c63c51
  1. 4
      public/asset/default/css/framework.css
  2. 2
      src/Controller/TorrentController.php
  3. 22
      templates/default/torrent/edit/locales.html.twig
  4. 3
      templates/default/torrent/edit/sensitive.html.twig
  5. 6
      templates/default/torrent/submit.html.twig

4
public/asset/default/css/framework.css

@ -437,6 +437,10 @@ a:visited.background-color-hover-night-light:hover {
display: block; display: block;
} }
.display-inline-block {
display: inline-block;
}
.display-flex { .display-flex {
display: flex; display: flex;
} }

2
src/Controller/TorrentController.php

@ -790,7 +790,6 @@ class TorrentController extends AbstractController
'attribute' => 'attribute' =>
[ [
'value' => $request->get('locales') ? $request->get('locales') : $torrentLocalesCurrent['value'], 'value' => $request->get('locales') ? $request->get('locales') : $torrentLocalesCurrent['value'],
'placeholder' => $translator->trans('Content language')
] ]
] ]
]; ];
@ -1144,7 +1143,6 @@ class TorrentController extends AbstractController
'attribute' => 'attribute' =>
[ [
'value' => $torrentSensitiveCurrent['value'], 'value' => $torrentSensitiveCurrent['value'],
'placeholder' => $translator->trans('Apply sensitive filters to publication')
] ]
] ]
]; ];

22
templates/default/torrent/edit/locales.html.twig

@ -2,7 +2,7 @@
{% block title %}{{'Edit locales'|trans }} - {{'Torrent'|trans }} #{{ torrentId }} - {{ name }}{% endblock %} {% block title %}{{'Edit locales'|trans }} - {{'Torrent'|trans }} #{{ torrentId }} - {{ name }}{% endblock %}
{% block main_content %} {% block main_content %}
<div class="padding-24-px margin-y-8-px border-radius-3-px background-color-night"> <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"> <div class="margin-b-16-px padding-b-16-px border-bottom-default">
<h1> <h1>
{{'Edit locales for torrent' | trans }} {{'Edit locales for torrent' | trans }}
<a href="{{ path('torrent_info', { torrentId : torrentId }) }}">#{{ torrentId }}</a> <a href="{{ path('torrent_info', { torrentId : torrentId }) }}">#{{ torrentId }}</a>
@ -13,7 +13,7 @@
<label for="locales"> <label for="locales">
{{'Content language'|trans }} {{'Content language'|trans }}
</label> </label>
<sub class="opacity-0 parent-hover-opacity-09" title="{{ form.locales.attribute.placeholder }}"> <sub class="opacity-0 parent-hover-opacity-09" title="{{ 'This torrent contains selected languages' | trans }}">
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" fill="currentColor" viewBox="0 0 16 16"> <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"/> <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> </svg>
@ -23,26 +23,26 @@
{{ error }} {{ error }}
</div> </div>
{% endfor %} {% endfor %}
<div class="padding-t-8-px"> <div class="margin-t-8-px margin-b-16-px">
<select class="width-100 padding-x-0" name="locales[]" multiple="multiple">
{% for locale in locales %} {% for locale in locales %}
<div class="margin-t-8-px margin-b-4-px margin-r-8-px display-inline-block min-width-120-px">
{% if locale in form.locales.attribute.value %} {% if locale in form.locales.attribute.value %}
<option class="padding-x-8-px padding-y-6-px" value="{{ locale }}" selected="selected"> <input type="checkbox" name="locales[]" id="{{ locale }}" value="{{ locale }}" checked="checked" />
{{ locale|locale_name(locale)|u.title }}
</option>
{% else %} {% else %}
<option class="padding-x-8-px padding-y-6-px" value="{{ locale }}"> <input type="checkbox" name="locales[]" id="{{ locale }}" value="{{ locale }}" />
{{ locale|locale_name(locale)|u.title }}
</option>
{% endif %} {% endif %}
<label class="margin-l-4-px" for="{{ locale }}">
{{ locale | locale_name(locale) | u.title }}
</label>
</div>
{% endfor %} {% endfor %}
{# {#
<option class="padding-x-8-px padding-y-8-px" value="other"> <option class="padding-x-8-px padding-y-8-px" value="other">
{{'Other...'|trans }} {{'Other...'|trans }}
</option> </option>
#} #}
</select>
</div> </div>
<div class="margin-b-16-px border-bottom-default"></div>
</div> </div>
<div class="text-right"> <div class="text-right">
<a class="margin-r-8-px" href="{{ path('torrent_info', { torrentId : torrentId }) }}"> <a class="margin-r-8-px" href="{{ path('torrent_info', { torrentId : torrentId }) }}">

3
templates/default/torrent/edit/sensitive.html.twig

@ -14,12 +14,13 @@
<label for="sensitive"> <label for="sensitive">
{{'Sensitive'|trans }} {{'Sensitive'|trans }}
</label> </label>
<sub class="opacity-0 parent-hover-opacity-09" title="{{ form.sensitive.attribute.placeholder }}"> <sub class="opacity-0 parent-hover-opacity-09" title="{{ 'Mark torrent content as sensitive' | trans }}">
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" fill="currentColor" viewBox="0 0 16 16"> <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"/> <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> </svg>
</sub> </sub>
</div> </div>
<div class="padding-t-4-px margin-b-16-px border-bottom-default"></div>
<div class="text-right"> <div class="text-right">
<a class="margin-r-8-px" href="{{ path('torrent_info', { torrentId : torrentId }) }}"> <a class="margin-r-8-px" href="{{ path('torrent_info', { torrentId : torrentId }) }}">
{{'cancel'|trans }} {{'cancel'|trans }}

6
templates/default/torrent/submit.html.twig

@ -16,6 +16,7 @@
</div> </div>
<div class="margin-b-16-px border-bottom-default"></div> <div class="margin-b-16-px border-bottom-default"></div>
<div class="margin-y-16-px"> <div class="margin-y-16-px">
<div class="margin-b-8-px">
<label for="locales"> <label for="locales">
{{'Content language' | trans }} {{'Content language' | trans }}
</label> </label>
@ -29,9 +30,9 @@
{{ error }} {{ error }}
</div> </div>
{% endfor %} {% endfor %}
<div class="padding-t-8-px"> </div>
{% for locale in locales %} {% for locale in locales %}
<div class="padding-t-8-px"> <div class="margin-t-8-px margin-b-4-px margin-r-8-px display-inline-block min-width-120-px">
{% if locale in form.locales.attribute.value %} {% if locale in form.locales.attribute.value %}
<input type="checkbox" name="locales[]" id="{{ locale }}" value="{{ locale }}" checked="checked" /> <input type="checkbox" name="locales[]" id="{{ locale }}" value="{{ locale }}" checked="checked" />
{% else %} {% else %}
@ -46,7 +47,6 @@
{{'Other...'|trans }} {{'Other...'|trans }}
#} #}
</div> </div>
</div>
<div class="margin-b-16-px border-bottom-default"></div> <div class="margin-b-16-px border-bottom-default"></div>
<div> <div>
<input type="checkbox" name="sensitive" id="sensitive" value="true" {% if form.sensitive.attribute.value %}checked="checked"{% endif %} /> <input type="checkbox" name="sensitive" id="sensitive" value="true" {% if form.sensitive.attribute.value %}checked="checked"{% endif %} />

Loading…
Cancel
Save