2017-03-15 00:28:27 +01:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2017-03-28 00:19:23 +02:00
|
|
|
<h1>Bild hochladen</h1>
|
|
|
|
<p>Hier kann ein neues Bild der Gallerie hinzugefügt werden. Dabei sind alle
|
|
|
|
gängigen Bildformate und Auflösungen möglich. Das hochgeladene Bild wird
|
|
|
|
zugeschnitten (Thumbnail) und skaliert (Detailseite).</p>
|
2017-03-15 00:28:27 +01:00
|
|
|
|
|
|
|
<form action="/upload" enctype="multipart/form-data" method="POST" class="form-horizontal">
|
|
|
|
{% csrf-field %}
|
|
|
|
|
|
|
|
<div class="form-group">
|
2017-03-28 00:19:23 +02:00
|
|
|
<label for="file" class="sr-only">Bild</label>
|
2017-03-15 00:28:27 +01:00
|
|
|
<input id="file" class="form-control" name="file" type="file" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
2017-03-28 00:19:23 +02:00
|
|
|
<label for="title">Bildüberschrift</label>
|
|
|
|
<input type="text" name="title" class="form-control"
|
|
|
|
placeholder="Leerlassen für Dateiname">
|
2017-03-15 00:28:27 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
2017-03-28 00:19:23 +02:00
|
|
|
<label for="description">Beschreibung (optional)</label>
|
|
|
|
<textarea name="description" class="form-control" rows="4"></textarea>
|
2017-03-15 00:28:27 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="tags">Tags</label>
|
2017-03-28 00:19:23 +02:00
|
|
|
<input type="text" id="tags" name="tags" class="form-control"
|
|
|
|
placeholder="Trennen mit Leerzeichen oder Kommas">
|
2017-03-15 00:28:27 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<button type="submit" class="btn btn-success">
|
|
|
|
<span class="fa fa-floppy-o"></span>
|
2017-03-28 00:19:23 +02:00
|
|
|
Bild hochladen
|
2017-03-15 00:28:27 +01:00
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|