Django application that lets you create reports
Project description
Autoreports
Autoreports is a Django application that lets you create reports in very Django Admin listing
Installation
Add the ‘autoreports’ app to your list of INSTALLED_APPS.
Redefine ‘admin/change_list.html’ templates as follows:
{% load adminmedia admin_list i18n autoreports_tags %} {# add auto_reports_tags #} {% block object-tools %} {% if has_add_permission %} <ul class="object-tools"> <li> <a href="add/{% if is_popup %}?_popup=1{% endif %}" class="addlink"> {% blocktrans with cl.opts.verbose_name as name %}Add {{ name }}{% endblocktrans %} </a> </li> {% autoreports_admin %} {# add this stuff #} </ul> {% endif %} {% endblock %}
By default it will takes ‘list_display’ fields to export in CSV. You can redefine it in every model admin you want:
class FooModelAdmin(SearchForm): report_fields = ('name', 'description', 'category', ...)
Development
You can get the last bleeding edge version of autoreports by doing a checkout of its subversion repository:
svn co https//svnpub.yaco.es/djangoapps/autoreports/trunk/autoreports
0.7.0
Code cleanup
Usability in the wizard
More funcionality in the API
A test project
Remove cmsutils dependence
Fixes
0.6.1
Fixed an issue when used in Django 1.3
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
File details
Details for the file django-autoreports-0.7.0.tar.gz
.
File metadata
- Download URL: django-autoreports-0.7.0.tar.gz
- Upload date:
- Size: 80.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9500dfdffd60c06622222756be5eda0505ed379c0325ec9de9ce3bcc47015887 |
|
MD5 | 27a628d336b8b1e39869e72b9a780021 |
|
BLAKE2b-256 | 34dc2eb9b44407864be247394255ba6330ca2db0298db1bf8b5fb632ac37a118 |