{% extends 'base.html' %} {% block content %} {% with config=settings.PLUGINS_CONFIG.netbox_animal_sounds %}

{% if animal %} The {{ animal.name|lower }} says {% if config.loud %} {{ animal.sound|upper }}! {% else %} {{ animal.sound }} {% endif %} {% else %} No animals have been created yet! {% endif %}

Show all animals

{% endwith %} {% endblock %}