Вы находитесь на странице: 1из 1

12/6/2014 source.sphene.net/svn/sphene/frameworkcomparison/django/barsite/barcrud/templates/barcrud/edit.

html
http://source.sphene.net/svn/sphene/frameworkcomparison/django/barsite/barcrud/templates/barcrud/edit.html 1/1
{% extends "barcrud/base.html" %}
{% block content %}
{% if bar %}
<h2>Editing '{{ bar.name }}'</h2>
{% else %}
<h2>Adding new Bar</h2>
{% endif %}
<form method="POST" action=".">
<table>
{{ form }}
<tr>
<td colspan="2"><input type="submit" value="Save" /></td>
</tr>
</table>
</form>
{% endblock %}

Вам также может понравиться