{% extends "base.html" %} {% block title %}PIPs — Mimir{% endblock %} {% block content %}

PIPs PIPs ({{ pip_count }})

Playbook Improvement Proposals for Released playbooks.

New PIP
Status
{% for val, label in pip_status_choices %} {% endfor %}
 
{% if pip_count == 0 %}
{% if status_filters or selected_playbook %}

No PIPs match the selected filters.

Clear filters {% else %}

You haven't submitted any PIPs yet.

Find a Released playbook you'd like to improve and click Submit PIP.

{% endif %}
{% else %}
{% if list_scope == 'all' %} {% endif %} {% for row in pip_rows %} {% with pip=row.pip %} {% if list_scope == 'all' %} {% endif %} {% endwith %} {% endfor %}
Submitted byPIP Title Target playbook Changes Status Submitted Updated Actions
{% if pip.created_by %}{{ pip.created_by.get_full_name|default:pip.created_by.username }}{% else %}—{% endif %} {% if row.unread_dot %} {% endif %} PIP-{{ pip.pk }} {{ pip.title }} {{ pip.playbook.name }} (v{{ pip.playbook.version }}) {{ pip.change_count|default:0 }} {{ pip.get_status_display }} {% if pip.submitted_at %}{{ pip.submitted_at|date:"Y-m-d" }}{% else %}—{% endif %} {{ pip.updated_at|date:"Y-m-d H:i" }} {# position-static: Bootstrap — dropdown in .table-responsive otherwise clips / mis-hit-tests #}
{% endif %}
{% endblock %}