{% extends "base.html" %} {% block title %} »List of Local Reports » {{report.name}} {% endblock %} {% block nav %} List of Local Reports » {{report.name}} {% endblock %} {% block content %} {% if request.method == 'GET' and request.values.confirm_delete %}
Are you sure you want to delete this report? Cancel
{% else %}
Update Report {{input_text("name", report.name, size=100)}} {{input_textarea('script', report.script, 50, 88, show_pos=True)}} {{input_textarea('template', report.template, 50, 88, show_pos=True)}}
Delete this report
{% endif %} {% endblock %}