mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-23 17:26:26 +01:00
13 lines
645 B
HTML
13 lines
645 B
HTML
<h2>{{ _("Add a score to %(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="{{ _('title') }}" required/><br/>
|
|
<input name="author" type="text" placeholder="{{ _('author') }}"/><br/>
|
|
<textarea id="lyrics" name="body" type="text" placeholder="{{ _('lyrics') }}"></textarea><br/>
|
|
{% if partition_uuid %}
|
|
<input name="partition-uuid" value="{{ partition_uuid }}" type="hidden">
|
|
{% else %}
|
|
{% include 'components/input_file.html' %}
|
|
{% endif %}
|
|
<input type="submit" value="{{ _('Add') }}" />
|
|
</form> |