django_demo documentation

Here is the documentation for the django_demo project

basic_pages

basic_pages.views

Basic Pages Views

basic_pages.views.HomeView(**kwargs)

A view that displays the home page.

basic_pages.views.DemoView(**kwargs)

A view that displays the demo page.

basic_pages.views.AboutView(**kwargs)

A Django class-based view that renders the 'about_page.html' template.

basic_pages.views.ContactView(**kwargs)

A Django class-based view that handles contact form submissions.

basic_pages.views.ContactForm([data, files, ...])

A Django form class for handling contact information.

basic_pages.views.SuccessView(**kwargs)

A Django class-based view that renders the 'success_page.html' template.

basic_pages.views.CookieManager()

A utility class for managing cookies.

accounts

accounts.views

Accounts Views

accounts.views.confirm_create(request)

Confirms the creation of an account.

accounts.views.create_account(request)

View for Creating an Account

accounts.views.logout(request)

View for logging out of an account.

accounts.views.profile(request)

View for managing the user account profile.