Delete some other old templates

This commit is contained in:
Oliver Walters 2019-04-18 23:44:15 +10:00
parent 9e9aa02b90
commit 41ee6320a8
3 changed files with 0 additions and 49 deletions

View File

@ -1,5 +0,0 @@
{% extends "create_edit_obj.html" %}
{% block obj_title %}
Create a new supplier purchase order
{% endblock %}

View File

@ -1,19 +0,0 @@
{% extends "base.html" %}
{% load static %}
{% block content %}
<div class='panel panel-primary'>
<div class='panel-heading'>
{% block obj_title %}
Object title goes here
{% endblock %}
</div>
<div class='panel-body'>
{% load crispy_forms_tags %}
{% crispy form %}
</div>
</div>
{% endblock %}

View File

@ -1,25 +0,0 @@
{% extends "base.html" %}
{% block content %}
<div class="panel panel-danger">
<div class="panel-heading">
{% block del_title %}
Deletion title goes here
{% endblock %}
</div>
<div class="panel-body">
<p><b>This is a permanent action and cannot be undone.</b></p>
{% block del_body %}
{% endblock %}
<form action="" method="post">{% csrf_token %}
<input type="submit" name='confirm' value="Confirm" />
<input type="submit" name="cancel" value="Cancel" />
</form>
</div>
</div>
{% endblock %}