Integrating reports into your front end ======================================= To integrate Slick Reporting into your application, you need to do override "slick_reporting/base.html" template, and/or, for more fine control over the report layout, override "slick_reporting/report.html" template. Example 1: Override base.html .. code-block:: html+django {% extends "base.html" %} {% block meta_page_title %} {{ report_title }}{% endblock %} {% block page_title %} {{ report_title }} {% endblock %} {% block extrajs %} {{ block.super }} {% include "slick_reporting/js_resources.html" %} {% endblock %} Let's see what we did there 1. We made our slick_reporting/base.html extend the main base.html 2. We added the ``report_title`` context variable (which hold the current report title) to the meta_page_title and page_title blocks. Use your version of these blocks, you might have them named differently. 3. We added the slick_reporting/js_resources.html template to the extrajs block. This template contains the javascript resources needed for slick_reporting to work. Also, use your version of the extrajs block. You might have it named differently. And that's it ! You can now use slick_reporting in your application. Example 2: Override report.html Maybe you want to add some extra information to the report, or change the layout of the report. You can do this by overriding the slick_reporting/report.html template. Here is how it looks like: .. code-block:: html+django {% extends 'slick_reporting/base.html' %} {% load crispy_forms_tags i18n %} {% block content %}