You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
{% extends 'base.html' %}
|
|
|
{% load input_field %}
|
|
|
{% load step_order %}
|
|
|
{% load load_json %}
|
|
|
|
|
|
{% block title %}{{ block.super }}: POC{% endblock %}
|
|
|
|
|
|
{% block progress %}{% include "poc-sidebar.html" %}{% endblock %}
|
|
|
|
|
|
{% block content %}
|
|
|
<form method="post">{% csrf_token %}
|
|
|
<p>Are you sure you want to delete "{{ object }}"?</p>
|
|
|
<input type="submit" value="Confirm">
|
|
|
</form>
|
|
|
{% endblock %}
|
|
|
|
|
|
{% block formbuttons %}
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
{% block sidebarNav %}
|
|
|
<!-- no sidebar -->
|
|
|
{% endblock %}
|
|
|
|
|
|
{% block sidebar %}
|
|
|
<!-- no sidebar -->
|
|
|
{% endblock %}
|