djangocms-currentuser-field 0.6

Creator: codyrutscher

Last updated:

Add to Cart

Description:

djangocmscurrentuserfield 0.6

An extension to the Aldryn Forms plugin that adds a Current User form field type. If there is a valid logged-in user session (request.user), that user’s information will be saved along with the form submission.
When you build your form, you can select to save the user’s:

User ID
Username
Email Address
Full Name

A “Current User Email Field” is also available that provides the same funcationality of the Aldryn Forms Email Field, allowing you to send the user who submitted the form an email confirmation.

Installation

Install via pip:
pip install djangocms-currentuser-field

Add to your INSTALLED_APPS (in settings.py):
INSTALLED_APPS = (
...
'djangocms-currentuser-field',
...
)

# Optional, if you'd like to use a subclass (1:1 relationship) attached
# to user for the user id field, specify below
CURRENTUSER_FIELD_USER_SUBCLASS = 'staff'

# Optional, if you'd like to specify a custom fields off the user or
# sub-user class, set a list of tuples:
CURRENTUSER_FIELD_CUSTOM_VALUES = [
('canvote', 'Voting Status')
]

Run migrations:
python manage.py migrate djangocms-current-user

“Current User Field” should now be available as a plugin in the CMS when you build a form!

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.