Overriding Visualizer Templates
Note
This page is for developers who want to customize or extend OpenWISP Network Topology, whether for bug fixes, new features, or contributions.
For user guides and general information, please see:
Follow these steps to override and customize the visualizer's default templates:
create a directory in your django project and put its full path in
TEMPLATES['DIRS']
, which can be found in the djangosettings.py
filecreate a sub directory named
netjsongraph
and add all the templates which shall override the defaultnetjsongraph/*
templatescreate a template file with the same name of the template file you want to override
More information about the syntax used in django templates can be found in the django templates documentation.
Example: Overriding the <script>
Tag
Here's a step by step guide on how to change the javascript options passed
to netjsongraph.js,
remember to replace <project_path>
with the absolute file system path
of your project.
Step 1: create a directory in
<project_path>/templates/netjsongraph
Step 2: open your settings.py
and edit the TEMPLATES['DIRS']
setting so that it looks like the following example:
# settings.py
TEMPLATES = [
{
"DIRS": [os.path.join(BASE_DIR, "templates")],
# ... all other lines have been omitted for brevity ...
}
]
Step 3: create a new file named netjsongraph-script.html
in the
new <project_path>/templates/netjsongraph/
directory, e.g.:
<!-- <project_path>/templates/netjsongraph/netjsongraph-script.html -->
<script>
// custom JS code here
</script>