Reference

This document covers various components of pinax.apps.waitinglist.

Named URLs

The named URLs in this app should enable the use of of the {% url %} template tag as well as reverse lookups in your project code without having to know the implementation details of this app.

waitinglist_list_signup

On GET request, render the list_signup.html template with a form instance from pinax.apps.waitinglist.forms.WaitingListEntryForm in context.

On POST request, process the the form. Then redirect to waitinglist_success.

waitinglist_success

Renders a direct_to_template template, success.html.

Templates

Templates should be placed in an waitinglist/ folder at the root of one of your template search paths.

list_signup.html

context:form

success.html

No context. Just a plain HTML template.

Modules

pinax.apps.waitinglist.admin

pinax.apps.waitinglist.forms

pinax.apps.waitinglist.models

pinax.apps.waitinglist.templatetags.waitinglist_tags

pinax.apps.waitinglist.views