show_all_checkbox.twig 742 B

12345678910111213
  1. <td>
  2. <form action="sql.php" method="post">
  3. {{ Url_getHiddenInputs(db, table) }}
  4. <input type="hidden" name="sql_query" value="{{ html_sql_query|raw }}" />
  5. <input type="hidden" name="pos" value="0" />
  6. <input type="hidden" name="is_browse_distinct" value="{{ is_browse_distinct }}" />
  7. <input type="hidden" name="session_max_rows" value="{{ not showing_all ? 'all' : max_rows }}" />
  8. <input type="hidden" name="goto" value="{{ goto }}" />
  9. <input type="checkbox" name="navig" id="showAll_{{ unique_id }}" class="showAllRows"
  10. {{- showing_all ? ' checked="checked"' }} value="all" />
  11. <label for="showAll_{{ unique_id }}">{% trans 'Show all' %}</label>
  12. </form>
  13. </td>