{% extends "pages/main.html" %} {% load staticfiles %} {% block title %} Plugins {% endblock %} {% block container %}

Plugins

{% for p in plugins %}

{{ p.name }}

{% with template_name=p.name|stringformat:"s"|add:".html" %} {% include "fragments/plugins/"|add:template_name with args=p.get_template_args only %} {% endwith %}
{% endfor %}
{% endblock %}