mirror of https://github.com/itflow-org/itflow
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:
parent
b9f6871bae
commit
a9e3e4744d
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue