File tree 1 file changed +15
-1
lines changed
1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ REPORT_BUILDER_EXCLUDE = ['user'] # Allow all models except User to be accessed
39
39
Export to Report action is disabled by default. To enable set
40
40
REPORT_BUILDER_GLOBAL_EXPORT = True
41
41
42
- # Django-SIS Usage
42
+ # Django-SIS Example
43
43
44
44
Django-SIS is a good example integration of report_builder. Note we've given report_builder a grappelli theme by modifying
45
45
templates.
@@ -96,9 +96,23 @@ Using the example above, consider the use case of a user wanting to pull the stu
96
96
![ ] ( https://raw.github.com/burke-software/django-report-builder/master/screenshots/reportfilterstab.png )
97
97
98
98
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
99
103
104
+ You may add formats in /admin/report_builder/format. See http://docs.python.org/2/library/string.html#format-examples
100
105
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.
101
108
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.
102
116
103
117
104
118
You can’t perform that action at this time.
0 commit comments