Lazy-Loading module for Django
Project description
=====
Django-Lazyloader
=====
Django-Lazyloader is a simple Django app which helps displaying Django objects as either HTML or JSON.
Quick start
-----------
1. Add "lazyloader" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = (
...
'lazyloader',
)
2. Include the lazyloader URLconf in your project urls.py like this::
url(r'^lazyloader/', include('lazyloader.urls')),
3. Run `python manage.py migrate` to create the demo models.
4. Run `python manage.py loaddata lazyloader_initial.json` to load the initial data for the live demo.
5. Run `python manage.py collectstatic` to collect the static files of the live demo.
6. To allow your models to be displayed by Django-Lazyloader, define a VALID_LAZY_MODELS variable in your settings.py
file like this::
VALID_LAZY_MODELS = [
'MyApp.MyModel',
'MyOtherApp.MyOtherModel',
]
7. Create html templates and assign them to your models by adding a LAZY_TEMPLATES variable to your project's
settings.py file like this::
LAZY_TEMPLATES = {
'MyApp.MyModel': 'myapp/mylazytemplate.html',
'MyOtherApp.MyOtherModel': 'myotherapp/myotherlazytemplate.html'
}
8. Run the development server and visit http://localhost:8000/lazyloader/demo for the live demo.
9. To access your the first 10 entries of your model 'Myapp.MyModel' in the JSON format visit
http://localhost:8000/lazyloader/myapp-mymodel-json-0-10/
10. To access your the first 10 entries of your model 'Myapp.MyModel' in the HTML format visit
http://localhost:8000/lazyloader/myapp-mymodel-html-0-10/
11. To create custom queries you can add the get parameters 'column' and 'search_value' to your url:
http://localhost:8000/lazyloader/myapp-mymodel-html-0-10/?column=name&search_value=smith
This url will execute a django-query that looks like this::
MyApp.MyModel.objects.filter(name=smith)
12. The variable that is passed to the templates is called 'models' so if you want to iterate over the queryset in a
template you have to do it like this::
{% for model in models %}
{{ model.fieldname }}
{% endfor %}
Django-Lazyloader
=====
Django-Lazyloader is a simple Django app which helps displaying Django objects as either HTML or JSON.
Quick start
-----------
1. Add "lazyloader" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = (
...
'lazyloader',
)
2. Include the lazyloader URLconf in your project urls.py like this::
url(r'^lazyloader/', include('lazyloader.urls')),
3. Run `python manage.py migrate` to create the demo models.
4. Run `python manage.py loaddata lazyloader_initial.json` to load the initial data for the live demo.
5. Run `python manage.py collectstatic` to collect the static files of the live demo.
6. To allow your models to be displayed by Django-Lazyloader, define a VALID_LAZY_MODELS variable in your settings.py
file like this::
VALID_LAZY_MODELS = [
'MyApp.MyModel',
'MyOtherApp.MyOtherModel',
]
7. Create html templates and assign them to your models by adding a LAZY_TEMPLATES variable to your project's
settings.py file like this::
LAZY_TEMPLATES = {
'MyApp.MyModel': 'myapp/mylazytemplate.html',
'MyOtherApp.MyOtherModel': 'myotherapp/myotherlazytemplate.html'
}
8. Run the development server and visit http://localhost:8000/lazyloader/demo for the live demo.
9. To access your the first 10 entries of your model 'Myapp.MyModel' in the JSON format visit
http://localhost:8000/lazyloader/myapp-mymodel-json-0-10/
10. To access your the first 10 entries of your model 'Myapp.MyModel' in the HTML format visit
http://localhost:8000/lazyloader/myapp-mymodel-html-0-10/
11. To create custom queries you can add the get parameters 'column' and 'search_value' to your url:
http://localhost:8000/lazyloader/myapp-mymodel-html-0-10/?column=name&search_value=smith
This url will execute a django-query that looks like this::
MyApp.MyModel.objects.filter(name=smith)
12. The variable that is passed to the templates is called 'models' so if you want to iterate over the queryset in a
template you have to do it like this::
{% for model in models %}
{{ model.fieldname }}
{% endfor %}
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-lazyloader-0.2.tar.gz
(40.9 kB
view details)
File details
Details for the file django-lazyloader-0.2.tar.gz.
File metadata
- Download URL: django-lazyloader-0.2.tar.gz
- Upload date:
- Size: 40.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
243d011adfff759c3f7a2a11f0e0861966b7dacfdc7451ebc9c8ca77d33dc034
|
|
| MD5 |
3bc88e16ca3b0a1835d7cb7b27ace291
|
|
| BLAKE2b-256 |
6d3f79fec93303772a7637b20e294739fda00e206a7ca2db183e33164056841d
|