{% extends "lizard_ui/lizardbase.html" %} {% load utility %} {% block title %}Application Screens{% endblock %} {% block sidebar %} {% application_icons 'home' %} {% endblock sidebar %} {% block content %}

In your view, load 'utility' and call the template tag application_icons with application_screen_slug as parameter.

Application Screens have Application Icons and they are defined in lizard_ui.models. Tip: make the application_screen_slug a variable.

See the template to see how it works.

{% endblock %}