phpcomposeryggdrasilbittorrentjs-lessalt-websymfonysphinxcatalogtorrentmagnetwikidistributedsocial-networkfederatedsqlitetracker
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
7.3 KiB
116 lines
7.3 KiB
1 year ago
|
{% extends 'default/layout.html.twig' %}
|
||
1 year ago
|
{% block title %}{{'Submit article'|trans }} - {{ name }}{% endblock %}
|
||
1 year ago
|
{% block main_content %}
|
||
1 year ago
|
<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">
|
||
1 year ago
|
<h1>{{'Submit article'|trans }}</h1>
|
||
1 year ago
|
</div>
|
||
1 year ago
|
<form name="submit" method="post" enctype="multipart/form-data" action="{{ path('article_submit') }}">
|
||
1 year ago
|
<div class="margin-b-16-px">
|
||
|
<label for="locale">
|
||
|
{{'Content language'|trans }}
|
||
|
</label>
|
||
1 year ago
|
<sub class="opacity-0 parent-hover-opacity-09" title="{{ form.locale.attribute.placeholder }}">
|
||
1 year ago
|
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" fill="currentColor" class="bi bi-info-circle-fill" 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>
|
||
|
<select class="width-100 margin-t-8-px" type="text" name="locale" id="locale">
|
||
|
{% for locale in locales %}
|
||
1 year ago
|
{% if locale == form.locale.attribute.value %}
|
||
1 year ago
|
<option value="{{ locale }}" selected="selected">
|
||
|
{{ locale|locale_name(locale)|u.title }}
|
||
|
</option>
|
||
|
{% else %}
|
||
|
<option value="{{ locale }}">
|
||
|
{{ locale|locale_name(locale)|u.title }}
|
||
|
</option>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
</select>
|
||
|
</div>
|
||
|
<div class="margin-b-16-px">
|
||
|
<label for="title">
|
||
|
{{'Title'|trans }}
|
||
|
</label>
|
||
|
<sub class="opacity-0 parent-hover-opacity-09" title="{{ form.title.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.title.error %}
|
||
1 year ago
|
<div class="text-color-red margin-y-8-px">
|
||
|
{{ error }}
|
||
|
</div>
|
||
|
{% endfor %}
|
||
1 year ago
|
<input class="width-100 margin-t-8-px"
|
||
|
type="text"
|
||
|
name="title"
|
||
|
id="title"
|
||
|
{% if form.title.attribute.minlength %}required="required"{% endif %}
|
||
|
value="{{ form.title.attribute.value }}"
|
||
|
placeholder="{{ form.title.attribute.placeholder }}"
|
||
|
minlength="{{ form.title.attribute.minlength }}"
|
||
|
maxlength="{{ form.title.attribute.maxlength }}" />
|
||
|
</div>
|
||
|
<div class="margin-y-8-px">
|
||
|
<label for="description">
|
||
|
{{'Description'|trans }}
|
||
|
</label>
|
||
|
<sub class="opacity-0 parent-hover-opacity-09" title="{{ form.description.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.description.error %}
|
||
1 year ago
|
<div class="text-color-red margin-y-8-px">
|
||
|
{{ error }}
|
||
|
</div>
|
||
|
{% endfor %}
|
||
1 year ago
|
<textarea class="width-100 margin-t-8-px"
|
||
|
name="description"
|
||
|
id="description"
|
||
|
{% if form.description.attribute.minlength %}required="required"{% endif %}
|
||
|
value="{{ form.description.attribute.value }}"
|
||
|
placeholder="{{ form.description.attribute.placeholder }}"
|
||
|
minlength="{{ form.description.attribute.minlength }}"
|
||
|
maxlength="{{ form.description.attribute.maxlength }}">{{ form.description.attribute.value }}</textarea>
|
||
|
</div>
|
||
|
<div class="margin-y-16-px">
|
||
|
<label for="torrents">
|
||
1 year ago
|
{{ 'Torrent files' | trans }} ({{ 'optional' | trans }})
|
||
1 year ago
|
</label>
|
||
|
<sub class="opacity-0 parent-hover-opacity-09" title="{{ form.torrents.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.torrents.error %}
|
||
1 year ago
|
<div class="text-color-red margin-y-8-px">
|
||
|
{{ error }}
|
||
|
</div>
|
||
|
{% endfor %}
|
||
1 year ago
|
<input class="width-100 margin-t-8-px" type="file" name="torrents[]" id="torrents" value="" accept=".torrent" multiple="multiple" />
|
||
|
</div>
|
||
|
<div class="margin-y-16-px">
|
||
|
<input type="checkbox"
|
||
|
name="sensitive"
|
||
|
id="sensitive"
|
||
|
value="true"
|
||
|
{% if form.sensitive.attribute.value %}checked="checked"{% endif %} />
|
||
|
<label for="sensitive">
|
||
|
{{'Sensitive'|trans }}
|
||
|
</label>
|
||
|
<sub class="opacity-0 parent-hover-opacity-09" title="{{ form.sensitive.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>
|
||
|
</div>
|
||
|
<div class="text-right">
|
||
|
<input class="button-green" type="submit" value="{{'Submit'|trans }}" />
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
1 year ago
|
{% endblock %}
|