Delte Form hybsched

This commit is contained in:
reverend 2020-08-12 18:12:12 +02:00
parent 764d0f32be
commit bc49b305ff

View File

@ -9,15 +9,22 @@
<fieldset class="LP-Form__Fieldset"> <fieldset class="LP-Form__Fieldset">
<legend class="LP-Form__Legend">Place löschen</legend> <legend class="LP-Form__Legend">Place löschen</legend>
{% csrf_token %} {% csrf_token %}
<div class="LP-Form__Composition LP-Form__Composition--breakable"> <div class="LP-Form__Composition">
<p class="LP-Paragraph">Are you sure you want to delete "{{place.name}}"?</p> <div class="LP-Form__Field LP-Form__InfoText">
<div class="LP-Form__Composition"> <p class="LP-Paragraph">Are you sure you want to delete "{{place.name}}"? </p>
<a href="{% url 'place_detail' pk=place.pk %}"> </div>
<button type="button" class="LP-Button LP-Button--cancel">Cancel</button> </div>
</a>
<input type="submit" class="LP-Button" value="Delete"/> <div class="LP-Form__Composition LP-Form__Composition--buttons">
</div> <div class="LP-Form__Field LP-Form__Button LP-Input">
</div> <button class="LP-Button">Delete</button>
</div>
<div class="LP-Form__Field LP-Form__Button LP-Input">
<a class="LP-Link" href="{% url 'place_detail' pk=place.pk %}">
<button type="button" class="LP-Button LP-Button--cancel">Cancel</button>
</a>
</div>
</div>
</fieldset> </fieldset>
</form> </form>
{% endblock maincontent %} {% endblock maincontent %}