Skip to main content

Saves the current user with an Aldryn Form for DjangoCMS.

Reason this release was yanked:

bug fixed in 0.6

Project description

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

  1. Install via pip:

    pip install djangocms-currentuser-field
  2. 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')
    ]
  3. Run migrations:

    python manage.py migrate djangocms-current-user
  4. “Current User Field” should now be available as a plugin in the CMS when you build a form!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

djangocms-currentuser-field-0.5.tar.gz (10.1 kB view hashes)

Uploaded Source

Built Distribution

djangocms_currentuser_field-0.5-py3-none-any.whl (12.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page