-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(formanswer): page switching loose filter
when changing page of form answer results of a form the filter on the form foreign key is lost.
- Loading branch information
Showing
2 changed files
with
140 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{# | ||
# --------------------------------------------------------------------- | ||
# Formcreator is a plugin which allows creation of custom forms of | ||
# easy access. | ||
# --------------------------------------------------------------------- | ||
# LICENSE | ||
# | ||
# This file is part of Formcreator. | ||
# | ||
# Formcreator 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 2 of the License, or | ||
# (at your option) any later version. | ||
# | ||
# Formcreator 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 Formcreator. If not, see <http://www.gnu.org/licenses/>. | ||
# --------------------------------------------------------------------- | ||
# @copyright Copyright © 2011 - 2021 Teclib' | ||
# @license http://www.gnu.org/licenses/gpl.txt GPLv3+ | ||
# @link https://github.com/pluginsGLPI/formcreator/ | ||
# @link https://pluginsglpi.github.io/formcreator/ | ||
# @link http://plugins.glpi-project.org/#/plugin/formcreator | ||
# --------------------------------------------------------------------- | ||
#} | ||
|
||
{% if total_count < 1 %} | ||
<div class="alert alert-info"> | ||
{{ __('No form answer yet', 'formcreator') }} | ||
</div> | ||
{% else %} | ||
{% set criteria = '?criteria[0][field]=3&criteria[0][searchtype]=equals&criteria[0][value]=' ~ form.getID() ~ '' %} | ||
<div class="center my-4"> | ||
{{ __('%s latest items', 'formcreator')|format(total_count) }} | ||
<a href="{{ 'PluginFormcreatorFormAnswer'|itemtype_search_path ~ criteria }}">{{ __('See all', 'formcreator') }}</a> | ||
</div> | ||
<div class="table-responsive"> | ||
<table class="table table-hover"> | ||
<thead> | ||
<tr> | ||
<th>{{ __('ID') }}</th> | ||
<th>{{ __('Name') }}</th> | ||
<th>{{ __('Form') }}</th> | ||
<th>{{ __('Requester', 'Requesters', 1) }}</th> | ||
<th>{{ __('Creation date') }}</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
{% for row in form_answers %} | ||
<tr> | ||
<td>{{ row.id }}</td> | ||
<td>{{ get_item_link('PluginFormcreatorFormAnswer', row.id) }}</a></td> | ||
<td>{{ row.form_name }}</td> | ||
<td>{{ row.requester_name }}</td> | ||
<td>{{ row.request_date }}</td> | ||
</tr> | ||
{% endfor %} | ||
</tbody> | ||
</table> | ||
</div> | ||
{% endif %} |