mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-02-02 13:49:40 +01:00
11 lines
601 B
HTML
11 lines
601 B
HTML
|
<h2>{{ _("Ajouter une partition à %(name)s", name=album.name) }}</h2>
|
||
|
|
||
|
<form action="/albums/{{ album.uuid }}/add-partition" method="post" enctype="multipart/form-data">
|
||
|
<input name="name" type="text" placeholder="{{ _('titre') }}" required/><br/>
|
||
|
<input name="author" type="text" placeholder="{{ _('auteur') }}"/><br/>
|
||
|
<textarea id="paroles" name="body" type="text" placeholder="{{ _('paroles') }}"></textarea><br/>
|
||
|
{% if partition_uuid %}
|
||
|
<input name="partition-uuid" value="{{ partition_uuid }}" type="hidden">
|
||
|
{% endif %}
|
||
|
<input type="submit" value="{{ _('Ajouter') }}" />
|
||
|
</form>
|