1<form class="ajax" action="{{ url('/navigation') }}" method="post">
2  <fieldset>
3    {{ get_hidden_inputs(database, table) }}
4
5    {% for type, label in types %}
6      {% if (item_type is empty or item_type == type) and hidden[type] is iterable %}
7        {{ not loop.first ? '<br>' }}
8        <strong>{{ label }}</strong>
9        <table class="pma-table w-100">
10          <tbody>
11            {% for item in hidden[type] %}
12              <tr>
13                <td>{{ item }}</td>
14                <td class="right">
15                  <a class="unhideNavItem ajax" href="{{ url('/navigation') }}" data-post="{{ get_common({
16                    'unhideNavItem': true,
17                    'itemType': type,
18                    'itemName': item,
19                    'dbName': database
20                  }, '', false) }}">{{ get_icon('show', 'Unhide'|trans) }}</a>
21                </td>
22              </tr>
23            {% endfor %}
24          </tbody>
25        </table>
26      {% endif %}
27    {% endfor %}
28  </fieldset>
29</form>
30