The JS script for building the skill wheel visualisation is currently duplicated three times in the templates:
- main/templates/main/snippets/hero.html:61
- main/templates/main/user_skill_profile.html:67
- main/templates/main/pages/roles.html:54
This should be moved so it is its own snippet that can be imported into the different pages that require it. Any data, like the div id, can be passed into the template when it is included (see Django docs on include), like so:
{% include "skill_wheel_snippet.html" with target_id="some_id" %}
The JS script for building the skill wheel visualisation is currently duplicated three times in the templates:
This should be moved so it is its own snippet that can be imported into the different pages that require it. Any data, like the div id, can be passed into the template when it is included (see Django docs on
include), like so:{% include "skill_wheel_snippet.html" with target_id="some_id" %}