basic_pages.views.ContactView¶
- class basic_pages.views.ContactView(**kwargs)[source]¶
A Django class-based view that handles contact form submissions.
- Attributes:
form_class (forms.Form): The form class to use for rendering and processing the contact form. template_name (str): The name of the template to render, which is set to “contact_page.html”.
- __init__(**kwargs)¶
Constructor. Called in the URLconf; can contain helpful extra keyword arguments, and other things.
Methods
__init__
(**kwargs)Constructor.
as_view
(**initkwargs)Main entry point for a request-response process.
dispatch
(request, *args, **kwargs)form_invalid
(form)If the form is invalid, render the invalid form.
form_valid
(form)Processes a valid form submission and sends an email notification.
get
(request, *args, **kwargs)Handle GET requests: instantiate a blank version of the form.
get_context_data
(**kwargs)Insert the form into the context dict.
get_form
([form_class])Return an instance of the form to be used in this view.
get_form_class
()Return the form class to use.
get_form_kwargs
()Return the keyword arguments for instantiating the form.
get_initial
()Return the initial data to use for forms on this view.
get_prefix
()Return the prefix to use for forms.
get_success_url
()Returns the URL to redirect to after a successful form submission.
get_template_names
()Return a list of template names to be used for the request.
http_method_not_allowed
(request, *args, **kwargs)options
(request, *args, **kwargs)Handle responding to requests for the OPTIONS HTTP verb.
post
(request, *args, **kwargs)Handle POST requests: instantiate a form instance with the passed POST variables and then check if it's valid.
put
(*args, **kwargs)render_to_response
(context, **response_kwargs)Return a response, using the response_class for this view, with a template rendered with the given context.
setup
(request, *args, **kwargs)Initialize attributes shared by all view methods.
Attributes
content_type
extra_context
http_method_names
initial
prefix
success_url
template_engine
template_name
view_is_async