You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/packages/ui-default/templates/problem_receive.html

48 lines
1.6 KiB
HTML

{% extends "layout/basic.html" %}
{% block content %}
<div class="row" data-sticky-parent>
<div class="medium-9 columns">
<div class="section">
<div class="section__header">
<h1 class="section__title">{{ _('Requests') }}</h1>
</div>
<div class="section__body no-padding">
{{ noscript_note.render() }}
<table class="data-table">
<colgroup>
<col class="col--id">
<col class="col--title">
<col class="col--action">
</colgroup>
<thead>
<tr>
<th class="col--id">{{ _('ID') }}</th>
<th class="col--title">{{ _('Title') }}</th>
<th class="col--action">{{ _('Action') }}</th>
</tr>
</thead>
<tbody>
{%- for request in requests -%}
{%- for pid in request.pids -%}
<tr>
<td class="col--id"><a href="{{ request.url }}{{ pid }}">{{ request.display }}{{ pid }}</a></td>
<td class="col--title">{{ request.pdocs[pid] }}</td>
<td class="col--action">
<form method="POST">
<input type="hidden" name="operation" value="confirm">
<input type="hidden" name="tokenId" value="{{ request._id }}">
<input type="hidden" name="pids" value="{{ pid }}">
<input class="typo-a" type="submit">
</form>
</td>
</tr>
{%- endfor -%}
{%- endfor -%}
</tbody>
</table>
</div>
</div>
</div>
</div>
{% endblock %}