{%extends 'cmdb/base.html'%} {% load bob %} {% load icons %} {% load query %} {% block content %}

Changes

{% for f in form %} {{ f.label_tag }} {{ f }} {% endfor %}
{% table_header columns url_query sort fugue_icons=1 %} {% for change in bob_page %} {% endfor %}
{{ change.time}} {{ change.message|truncatechars:40 }} {% if change.1 %} {% icon change.1 %} {% endif %} {{ change.ci.name}} {% if change.priority == 4 %} {% icon 'fugue-exclamation-red' %} {% elif change.priority == 3 %} {% icon 'fugue-exclamation' %} {% elif change.priority == 2 %} {% icon 'fugue-exclamation-white' %} {% else %} {% endif %} {{ change.get_priority_display}} {% if change.type == 2 %} {% icon 'fugue-disc--arrow' %} {% elif change.type == 1 %} {% icon 'fugue-blue-document-node' %} {% elif change.type == 3 %} {% icon 'fugue-computer' %} {% endif %} {{ change.get_type_display }} {{ change.external_key }} {% if change.type == 4 %} {% icon 'fugue-report' %} View in Zabbix {% elif change.type == 5 %} {% icon 'fugue-report' %} View in SO {% else %} {% icon 'fugue-report' %} View {% endif %}
{% pagination bob_page url_query=url_query show_all=0 show_csv=0 fugue_icons=1 %} {% endblock %}