13 lines
425 B
HTML
13 lines
425 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<article>
|
|
<h1>Delete {{logentry}}</h1>
|
|
<form method="post" action="{% url 'entry-delete' employee.pk logentry.pk %}">
|
|
{% csrf_token %}
|
|
<p>
|
|
<input class="action-button action-button--danger" type="submit" value="Confirm Delete"> or <a href="{% url 'employee-detail' employee.pk %}">cancel</a>
|
|
</p>
|
|
</form>
|
|
</article>
|
|
{% endblock %} |