{% extends "master.html" %} {% block title %} {{ package.name }} | PkgDB {% endblock %} {%block tag %}packages{% endblock %} {% if g.fas_user %} {% set options = True %} {%block options %} {% endblock %} {% endif %} {% block content %}

{{ package.name }}

{{ package.summary }}

{% if package.description %}

{{ package.description }}

{% endif %}
Status {{ package.status }}
Created on {{ package.date_created.strftime('%Y-%m-%d') }}
{% for pkg in package_acl %}

{{ pkg['collection'] }}

Point of contact: {{ pkg['point_of_contact'] }} {% if pkg['status'] == 'Retired' %} -- Package retired {% elif is_admin or pkg['status'] == 'orphan' or pkg['point_of_contact'] == g.fas_user.username %} -- {% if pkg['status'] == 'Orphaned' %} request -- retire {% elif is_admin or pkg['point_of_contact'] == g.fas_user.username %} leave {% endif %} {% endif %}

{% for maintainer in pkg['acls'] %} {% for acl in pkg['acls'][maintainer] | sort(reverse=True) %} {% if acl['status'] %} {% else %} {% endif %} {% endfor %} {% if maintainer == g.fas_user.username or pkg['branchname'] in branch_admin %} {% if pkg['acls'][maintainer] %} {% endif %} {% endif %} {% endfor %}
{{ maintainer }} {{ acl['acl'] }} {{ acl['status'] }}
{% endfor %}
Approved: Approved Awaiting Review: Awaiting Review Denied: Denied Obsolete: Obsolete Removed: Removed
{% endblock %}