Good ideas and conversation. No ads, no tracking. Login or Take a Tour!
That ruins our baker's dozen of toggles, but ok. As long as the default is off. Someday I am going to make a toggle that toggles the toggles. Actually, maybe there is a more sensible approach. Stay tuned.
An alternative to a bunch of booleans is html's select multiple tag. Then you could just have one form that you select "png", "jpg", "gif", etc to display inline: <option value="png">png</option> <option value="jpg">jpg</option> <option value="gif">gif</option> </select> The raw POST of what gets sent to the server then will be: display_inline: jpg display_inline: gif An example in practice: Sorry if this net nerd talk is tangential from the anime talk >_><select multiple="multiple" name="display_inline">
display_inline: png