{% extends "testapp/base.html" %} {% block title %}django-gandalf examples{% endblock %} {% block content %}

django-gandalf examples

Every wizard the test app mounts, grouped by the thing it demonstrates. These are the same viewsets the test suite drives, so anything you can click through here is behaviour something asserts on — and each page carries a banner naming the example, its description and the template rendering it.

Finishing a wizard lands you on a plain-text page rather than a styled one. That is deliberate: done() returns a bare HttpResponse whose exact bytes the tests assert on. Use the browser's back button, or the bar above, to get out.

{% for group in groups %}

{{ group.title }}

{{ group.blurb }}

{% endfor %} {% endblock %}