Added back option for 500 records per page as we have successfully moved most of the repeating row modals to ajax which will allow super improved performance

This commit is contained in:
johnnyq 2025-02-18 18:10:26 -05:00
parent b9f6871bae
commit a9e3e4744d
1 changed files with 2 additions and 0 deletions

View File

@ -26,6 +26,8 @@ if ($total_found_rows > 5) {
<option <?php if ($user_config_records_per_page == 20) { echo "selected"; } ?> >20</option>
<option <?php if ($user_config_records_per_page == 50) { echo "selected"; } ?> >50</option>
<option <?php if ($user_config_records_per_page == 100) { echo "selected"; } ?> >100</option>
<option <?php if ($user_config_records_per_page == 500) { echo "selected"; } ?> >500</option>
<option <?php if ($user_config_records_per_page == 1000) { echo "selected"; } ?> >1000</option>
</select>
</form>
</div>