Skip to main content

Easy and simple way to confirm user actions in your django projects

Project description


django-user-action-confirmation
===============================


Overview
~~~~~~~~

Easy and simple way to confirm user actions.
This one can be used with email or sms confirmation, but not provide this functional.


Installation
~~~~~~~~~~~~

Install developer version using PIP::

pip install -e git+https://github.com/alekam/django-user-action-confirmation#egg=user_action_confirmation

Change ``settings.py`` of your project. Add ``user_action_confirmation`` to
``INSTALLED_APPS``. Add required options (see: Settings).

Run ``manage.py syncdb`` or ``manage.py migrate options`` if you use South
and restart your project server.


Settings
~~~~~~~~

CONFIRMATION_OPERATION_CHOICES - required, list of tuples witch contains operation ID and short description

CONFIRMATION_MAX_DAYS - optional, default is 3 days


Usage
~~~~~

Install it, plug-in to your project and add required settings. Have fun!


Usage example (somethere in FormView.form_valid):

name = sa_setting('SOCIAL_AUTH_PARTIAL_PIPELINE_KEY',
'partial_pipeline')
backend = self.request.session[name]['backend']
email = form.cleaned_data['email']

token = Confirmation.objects.create(None, settings.OPERATION_REGISTER)
token.params = {
'email': email,
'backend': backend
}
token.save()

mail.send(
[email, ],
settings.DEFAULT_FROM_EMAIL,
template='confirm_registration',
context={
'user': {
'first_name': self.request.session.get('saved_first_name', '')
},
'site': Site.objects.get_current(),
'token': token.token,
'confirm_url': reverse('auth_confirm_email',
args=[token.token, ])
}
)


Provided template tags and libraries
~~~~~~~~~~~~~~~~~~~~~~~

No any templeate tags provided


Provided management commands
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

No any management commands provided


Testing
~~~~~~~

If this application is installed in your project you can run this inside your
project::

python manage.py test user_action_confirmation

or instead run inside this package::

python run_tests.py

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

django-user-action-confirmation-0.1.4.tar.gz (5.2 kB view details)

Uploaded Source

File details

Details for the file django-user-action-confirmation-0.1.4.tar.gz.

File metadata

File hashes

Hashes for django-user-action-confirmation-0.1.4.tar.gz
Algorithm Hash digest
SHA256 ea4d0ba7d0fdcf6fdb1ef662dc6969a2ded1a7e3a47b01d8f146ca4975d8a1a0
MD5 839e1dfbfedd1dd1f8bac080a9cdb204
BLAKE2b-256 26d26ca24a1fa6788127eabf7d8c20ab51dc94b47240d6043c61af2ab57821de

See more details on using hashes here.

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