15.2.561. server/camcops_server/templates/menu/view_task_schedule_items.mako¶
## -*- coding: utf-8 -*-
<%doc>
camcops_server/templates/menu/view_task_schedule_items.mako
===============================================================================
Copyright (C) 2012, University of Cambridge, Department of Psychiatry.
Created by Rudolf Cardinal (rnc1001@cam.ac.uk).
This file is part of CamCOPS.
CamCOPS is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
CamCOPS is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with CamCOPS. If not, see <https://www.gnu.org/licenses/>.
===============================================================================
</%doc>
<%inherit file="base_web.mako"/>
<%!
from cardinal_pythonlib.datetimefunc import format_datetime
from camcops_server.cc_modules.cc_constants import DateFormat
from camcops_server.cc_modules.cc_pyramid import Icons, Routes, ViewArg, ViewParam
%>
<%include file="db_user_info.mako"/>
<h1>
${ req.icon_text(
icon=Icons.TASK_SCHEDULE_ITEMS,
text=_("Task schedule items for {schedule_name}").format(schedule_name=schedule_name)
) | n }
</h1>
<div>${ page.pager() | n }</div>
<table>
<tr>
<th>${ _("Task") }</th>
<th>${ _("Due from (days)") }</th>
<th>${ _("Due within (days)") }</th>
<th>${ _("Edit") }</th>
<th>${ _("Delete") }</th>
</tr>
%for item in page:
<tr>
<td>
${ item.task_shortname }
</td>
<td>
${ item.due_from.in_days() }
</td>
<td>
${ item.due_within.in_days() }
</td>
<td>
${ req.icon_text(
icon=Icons.EDIT,
url=request.route_url(
Routes.EDIT_TASK_SCHEDULE_ITEM,
_query={
ViewParam.SCHEDULE_ITEM_ID: item.id
}
),
text=_("Edit")
) | n }
</td>
<td>
${ req.icon_text(
icon=Icons.DELETE,
url=request.route_url(
Routes.DELETE_TASK_SCHEDULE_ITEM,
_query={
ViewParam.SCHEDULE_ITEM_ID: item.id
}
),
text=_("Delete")
) | n }
</td>
</tr>
%endfor
</table>
<div>${ page.pager() | n }</div>
<div>
${ req.icon_text(
icon=Icons.TASK_SCHEDULE_ITEM_ADD,
url=request.route_url(
Routes.ADD_TASK_SCHEDULE_ITEM,
_query={
ViewParam.SCHEDULE_ID: req.get_int_param(ViewParam.SCHEDULE_ID),
}
),
text=_("Add a task schedule item")
) | n }
</div>
<%include file="to_view_task_schedules.mako"/>
<%include file="to_main_menu.mako"/>