Private
Public Access
1
0

line 422 and started with plan_menu

This commit is contained in:
Sander Roosendaal
2018-10-11 22:03:04 +02:00
parent 9d69fa15ea
commit f72335c49d
6 changed files with 175 additions and 224 deletions

View File

@@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends "newbase.html" %}
{% load staticfiles %}
{% load rowerfilters %}
@@ -8,23 +8,17 @@
{% endblock %}
{% block content %}
<style>
#mypointer {
cursor: pointer;
}
</style>
{% block main %}
<div class="grid_12 alpha">
<form action="" method="post">
{% csrf_token %}
<p>Are you sure you want to delete <i>{{ object }}</i>?</p>
<div id="formbutton" class="grid_1 prefix_2">
<input class="button red" type="submit" value="Confirm">
</div>
</form>
<form action="" method="post">
{% csrf_token %}
<p>Are you sure you want to delete <em>{{ object }}</em>?</p>
<input class="button red" type="submit" value="Confirm">
</form>
</div>
{% endblock %}
{% block sidebar %}
{% include 'menu_plan.html' %}
{% endblock %}