mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-24 01:36:25 +01:00
15 lines
608 B
HTML
15 lines
608 B
HTML
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block title %}Ajout de partition{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h2>Ajouter une partition à {{ 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/>
|
||
|
<input name="partition-uuid" value="{{ partition_uuid }}" type="hidden">
|
||
|
<input type="submit" value="Ajouter" />
|
||
|
</form>
|
||
|
{% endblock %}
|