{% extends "accounts/base.html" %} {% block title %}Generate Page{% endblock %} {% block content %}

Generate New Page in Existing App

{% if message %}
{{ message }}
{% endif %}
{% csrf_token %} {{ form.as_p }}

This will add a view, route, and template to an existing app. You can optionally register the page on the dashboard.

{% endblock %}