Skip to content

Commit acab466

Browse files
committed
Update README.md
Added Extending and integrating section
1 parent 56b5a03 commit acab466

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ REPORT_BUILDER_EXCLUDE = ['user'] # Allow all models except User to be accessed
3939
Export to Report action is disabled by default. To enable set
4040
REPORT_BUILDER_GLOBAL_EXPORT = True
4141

42-
# Django-SIS Usage
42+
# Django-SIS Example
4343

4444
Django-SIS is a good example integration of report_builder. Note we've given report_builder a grappelli theme by modifying
4545
templates.
@@ -96,9 +96,23 @@ Using the example above, consider the use case of a user wanting to pull the stu
9696
![](https://raw.github.com/burke-software/django-report-builder/master/screenshots/reportfilterstab.png)
9797

9898

99+
# Extending and integrating django-report-builder
100+
## Format
101+
Note many python format features require >= 2.7
102+
http://docs.python.org/2/library/string.html#string-formatting
99103

104+
You may add formats in /admin/report_builder/format. See http://docs.python.org/2/library/string.html#format-examples
100105

106+
There are also some examples included in the south migrations. If you use south django-report-builder comes with
107+
a few formats for you.
101108

109+
## Integrations
110+
Give django-report-builder a native look and feel. django-sis shows a good example of a django-grappelli
111+
like style.
112+
113+
https://github.com/burke-software/django-sis/tree/master/templates/report_builder
114+
115+
Note I use django-apptemplates in this example to specify which app template I'm extending.
102116

103117

104118

0 commit comments

Comments
 (0)