Plotting Charts

Learn to add static charts to your Django admin page.

We'll cover the following...

Plotting charts

Now that you know how to extend the Django admin templates, you can imagine what you want as new features.

As an example, you will learn how to integrate the chart.js library in your Author list page view.

In your sample_app/templates/admin/sample_app/author/change_list.html you will find the {{block.super}} and load the chart.js library (line 7 in unedited file).

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.8.0/Chart.min.css"/>
<script src= "https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.8.0/Chart.bundle.min.js">
...