{% extends 'base.html' %} {% load bootstrap3 %} {% load staticfiles %} {% load defcon %} {% block title %}{{ component.name }} - DefCon {{ component.defcon }}{% endblock %} {% block content %}

Defcon

Current state of {{ component.name }} is:
{% for dc, data in component.statuses_by_plugins %}

{{ dc|defcon_to_class }}

More
    {% for plugin, statuses in data.items %}

    {{ plugin.plugin.name }} ({{ statuses|length }})

      {% for status in statuses %}
    • {{ status.title }} - {% if status.link %}#{% endif %}

      {{ status.description|truncatewords:5 }}

    • {% endfor %}
    {% endfor %}
{% endfor %}
{% endblock %}