{% extends "base.html" %} {% block content %}
{% for config in configurations %}

Configuration {{config.id}}

  • id: {{config.id}}
  • name: {{config.name}}
  • description: {{config.description}}
  • resource: {{config.bundle}}
{% empty %}

You don't have any configurations. You can create a configuration by configuring a pod.

{% endfor %}
{% endblock %}