{#- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -#} {% set page="task_manager" %} {% extends 'allura:templates/site_admin.html' %} {% block extra_css %} {% endblock %} {% macro _paging() %}
{% if page_num > 3 -%} <<  {%- endif -%} {%- if page_num > 1 -%} < …  {%- endif -%} >
{% endmacro %} {% block content %}

Task Manager



Create a new task
{{ _paging() }}
Showing tasks from {{ window_start.strftime('%Y/%m/%d %H:%M:%S') }} to {{ window_end.strftime('%Y/%m/%d %H:%M:%S') }}...
{% for task in tasks %} {% else %} {% endfor %}
Task Name State Project User Time Queued Time Started Process
{{task.task_name}} {{task.state}} {{task.project.shortname if task.project}} {{task.user.username if task.user}} {{task.time_queue.strftime('%Y/%m/%d %H:%M:%S') if task.time_queue}} {{task.time_start.strftime('%Y/%m/%d %H:%M:%S') if task.time_start}} {{task.process if task.process}}
No tasks found
{{ _paging() }} {% endblock %}