{% extends "master.html" %}
{% block title %} {{ super() }} {% endblock %}
{%block header %}
{% if refresh %}
{% endif %}
{% endblock %}
{%block tag %}{% if select %}{{ select }}{% else %}admin{% endif %}{% endblock %}
{% set options = True %}
{%block options %}
{% if select %}
{% endblock %}
{% block content %}
{% if select %}
{{ packager }}'s requests
{% else %}
Actions
{% endif %}
{% if total_page and total_page > 1 %}
{% if page > 1%}
< Previous
{% else %}
< Previous
{% endif %}
|
{{ page }} / {{ total_page }} |
{% if page < total_page %}
Next >
{% else %}
Next >
{% endif %}
|
{% endif %}
Date |
User |
Package |
Action |
Branch |
From branch |
Status |
{% if not select %}
|
{% endif %}
{% for action in actions %}
{% if loop.last %}
{% else %}
{% endif %}
{{ action.date_created.strftime('%Y-%m-%d %H:%M:%S') }}
|
{{ action.user }}
|
{% if action.package %}
{{ action.package.name }}
{% else %}
{{ action.info_data['pkg_name'] }}
{% endif %}
|
{{ action.action }} |
{{ action.collection.branchname }} |
{{ action.from_collection.branchname }} |
{{ action.status }} |
{% if not select %}
Update
|
{% endif %}
{% endfor %}
{% endblock %}
{% block jscripts %}
{{ super() }}
{% endblock %}