Class-based-views mixins for handling related objects
Project description
django-related is a set of class-based-view mixins that help with common scenarios that involves related objects. The generic class-based views like CreateView or UpdateView only deal with single objects. However, for nested resources, or in cases where we might want to use an existing object if avaialble, these views lack functionality. This is what django-related provides.
Installation
Installation can be done using pip:
pip install django-related
There is no need to add related to installed apps. It can be used directly:
from related.views import GetExistingMixin, CreateWithRelatedMixin ...
GetExistingMixin
Basic usage:
from related.views import GetExistingMixin from django.views.gneric import CreateView from models import Foo class MyView(GetExistingMixin, CreateView): model = Foo existing_redirect_url = '/bar'
With the above view, if we submit a form that contains a pk or slug field, and the Foo object with matching pk or slug field exists, user will be redirected to /bar path, and the model form for Foo will not even be processed.
The view can be further customized using the following properties (and matching methods):
- existing_form_class (get_existing_form_class())
Uses the specified form to process the request rather than request parameters. Default is None (does no use forms).
- existing_form_field
Form field that contains data about existence of the object. Note that this field does not need to evaluate to an actual object. Any non-False value will be treated as signifying object’s existence. The most common use case is to use a ModelChoiceField or some field that reads the database in advance, and provides a choice of values that are only available when objects exist.
- existing_form_initial (get_existing_form_initial())
Dictionary of initial values for the existing_form_class form (if form is used).
- existing_pk_field
The model field that contains the primary key. Default is 'pk'.
- existing_slug_field
The model field that contains the slug. Default is 'slug'
- existing_request_pk_key
The request parameter that represents the primary key. Defalt is 'pk'.
- existing_request_slug_key
The request parameter that represents the slug. Note that if primary key is specified (it is by default), and it is passed in request, slug will not be looked up.
- existing_redirect_url (get_existing_redirect_url())
Required attribute. The URL that client will be redirected to if the object exists.
Reporting bugs
Please report bugs and feature requests to the Bitbucket issue tracker.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.