Add-another pop-ups a la django-admin.
Project description
Add-another pop-ups a la django-admin.
The popup views are implemented using a mixin to the generic CreateView. Also, the popups now support permissions. As a result, a user will only get the add-another link next to a ForeignKey or a ManyToMany field if he has the add permission for the target model.
Installation
Get it from the cheeseshop:
pip install django_popcorn
Usage
Read on:
Include the following in your INSTALLED_APPS settings:
'popcorn',
Add this to your settings.py (If you do not already have it):
TEMPLATE_CONTEXT_PROCESSORS = ( "django.contrib.auth.context_processors.auth", "django.core.context_processors.debug", "django.core.context_processors.i18n", "django.core.context_processors.media", "django.core.context_processors.static", "django.contrib.messages.context_processors.messages", "django.core.context_processors.request", "popcorn.context_processors.admin_media_prefix", ) POPCORN_MODELS = ('auth.Group', 'auth.Permission')
Add the following to your base.html template:
<script src="{{ ADMIN_MEDIA_PREFIX }}js/admin/RelatedObjectLookups.js"></script>
We will create a view for auth.User and use the utility get_popcorn_urls function to generate popcorn views and urls:
urlpatterns = patterns('', url(r'^$', CreateView.as_view(model=User, success_url='.'), name='auth_user_create'), url(r'^admin/', include(admin.site.urls)), ) urlpatterns += get_popcorn_urls()
Render your forms like so:
<form method="POST" action="{{ request.get_full_path }}"> {% csrf_token %} {% include 'popcorn/form.html' %} <button type="submit">Submit</button> <a href="../">Cancel</a> </form>
Thats it! sync your DB, run the dev server and fire up your browser at localhost. You should see a form wthout the add-another links. This is because popcorn add-another links are only enabled for users who have add permission for the target model. Now log-in - possibly via admin after enabling it and hit localhost again. You should see a little + next to ForeignKey and ManyToMany fields. Click it and the add-another popup would appear. If you are having any problems, please check out the test project for a working implementation.
History
1.0.0 (2014-06-23)
98% test coverage. Ready for big-time.
0.2.0 (2013-12-9)
Added support for permissions.
0.1.0 (2013-12-2)
First release on PyPI.
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
File details
Details for the file django_popcorn-1.0.0.tar.gz
.
File metadata
- Download URL: django_popcorn-1.0.0.tar.gz
- Upload date:
- Size: 14.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f86018e333ea0e2daad2dd2b74c3aedcd17a5da031f8251ca80a2c26388fabee |
|
MD5 | 449c7a7ba1ebaacdde40a4934e0826b4 |
|
BLAKE2b-256 | cee0401c19faab7e3a9d91e7b0c5ba63bf28854c443e7cb3b3ad02b05e1e0c40 |