Rendering helpers for AJAX enabled views
Project description
A few little helpers.
Instead of this:
def view(request): context_dict = {'items': MyModel.objects.all()} return render(request, "template.html", context_dict)
Use this:
from ajaxify import render_ajax def view(request): context_dict = {'items': MyModel.objects.all()} return render_ajax(request, "template.html", template_fragment.html", context_dict)
Now if your view is responding to AJAX requests it will respond with only the generated fragment.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-ajaxify-0.0.1.tar.gz
(1.4 kB
view details)
File details
Details for the file django-ajaxify-0.0.1.tar.gz
.
File metadata
- Download URL: django-ajaxify-0.0.1.tar.gz
- Upload date:
- Size: 1.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e53bf17e1d87165578aaeab38986b69e53cbadbd647725a93c63743cf18388f8 |
|
MD5 | 02279e6f96a8c80c37db5c85d8323482 |
|
BLAKE2b-256 | 874d3a2c36b3414ff5ce8364472a5966b9cdbf5248febb26a5e0e0c61a29d445 |