Idea: Remove need for ?view= part of Home View
Posted: Mon Mar 13, 2023 3:37 pm
Good day
As a re-newed user to Zone Minder I was testing a lot in the Options / User section of Zone Minder for the "Home View' field.
It strikes me that very few administrators would be able to figure out quickly to add before their desired view. I assumed (as did another nice video creator for Zone Minder on youtube) that you would enter the simple name as it appears in the top menu such as simply 'montage' or "Montage' perhaps.
Finally I figured out that in fact you do need the part
Is it possible to have the back end coding force that part for the user?
Further you could force (I remember doing this once in some programming language...) that whatever the user enters in terms of upper or lower case, the field data payload is forced into lowercase.
That way, the user needs to only enter the name as it appears in the Menu such as:
* Console / console
* Options / options
* Log / log
* Groups / groups
* Filters / filters
* Cycle / cycle
* Montage / montage
* Montage Review / montage review
* Audit Events Report / audit events report
and then automatically redirects the user to
I hope that idea makes sense and the way I explained it was clear
Thanks again for a great project!
As a re-newed user to Zone Minder I was testing a lot in the Options / User section of Zone Minder for the "Home View' field.
It strikes me that very few administrators would be able to figure out quickly to add
Code: Select all
?view=
Finally I figured out that in fact you do need the
Code: Select all
?view=
Is it possible to have the back end coding force that part for the user?
Further you could force (I remember doing this once in some programming language...) that whatever the user enters in terms of upper or lower case, the field data payload is forced into lowercase.
That way, the user needs to only enter the name as it appears in the Menu such as:
* Console / console
* Options / options
* Log / log
* Groups / groups
* Filters / filters
* Cycle / cycle
* Montage / montage
* Montage Review / montage review
* Audit Events Report / audit events report
and then automatically redirects the user to
Code: Select all
?view=<whatever they entered>
Thanks again for a great project!