admin_edit.html is enabled or disabled by default. It will not change due to the status value of the database. I made the following judgment for this form. The result cannot be displayed. Why and how to obtain it? status and display the value in the edit page
{eq name="$user_info.status" value=1}
<option value="1" selected>Enable</option>
<option value="0" >Do not enable</option>
{else /}
{eq name="$user_info.status" value="0"}
< ;option value="1">Enable</option>
<option value="0" selected >Disable</option>
{/eq}
{/eq}
If you look at the source code, this enabling and disabling function should not be done, it just provides an entrance.
First of all, because the getter changes the values of 0 and 1 into enabled/disabled/administrator/super administrator strings, the value here is the above value instead of 0 and 1, and the value in option It should be exactly the same as the string above
The reason for not displaying is found. Because the value of value is a string, and the value of $user_info.status is 1 or 0, so the selected ones will be judged as false and will not be displayed. So how to change the status of the database? What about passing the value into the pop-up admin_edit.html?