33 lines
673 B
HTML
33 lines
673 B
HTML
{% extends "newbase.html" %}
|
|
{% load static %}
|
|
{% load rowerfilters %}
|
|
|
|
{% block title %}Add Instant Plan{% endblock %}
|
|
|
|
|
|
{% block main %}
|
|
<h1>{{ plan.name }}</h1>
|
|
|
|
<ul class="main-content">
|
|
<li class="grid_4">
|
|
<form enctype="multipart/form-data" action="" method="post">
|
|
{% if form.errors %}
|
|
<p style="color: red;">
|
|
Please correct the error{{ form.errors|pluralize }} below.
|
|
</p>
|
|
{% endif %}
|
|
<table>
|
|
{{ form.as_table }}
|
|
</table>
|
|
{% csrf_token %}
|
|
<p><input class="button" type="submit" value="Save"></p>
|
|
</form>
|
|
</li>
|
|
</ul>
|
|
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% include 'menu_plan.html' %}
|
|
{% endblock %}
|