WebHost: Fixing default values for LocationSets (#3374)
* Update macros.html * Update macros.html
This commit is contained in:
		
							parent
							
								
									0ea20f3929
								
							
						
					
					
						commit
						1ae0a9b76f
					
				|  | @ -141,7 +141,7 @@ | |||
|         {% for group_name in world.location_name_groups.keys()|sort %} | ||||
|             {% if group_name != "Everywhere" %} | ||||
|                 <div class="option-entry"> | ||||
|                     <input type="checkbox" id="{{ option_name }}-{{ group_name }}" name="{{ option_name }}" value="{{ group_name }}" {{ "checked" if grop_name in option.default }} /> | ||||
|                     <input type="checkbox" id="{{ option_name }}-{{ group_name }}" name="{{ option_name }}" value="{{ group_name }}" {{ "checked" if group_name in option.default }} /> | ||||
|                     <label for="{{ option_name }}-{{ group_name }}">{{ group_name }}</label> | ||||
|                 </div> | ||||
|             {% endif %} | ||||
|  |  | |||
|  | @ -142,7 +142,7 @@ | |||
|         {% for group_name in world.location_name_groups.keys()|sort %} | ||||
|             {% if group_name != "Everywhere" %} | ||||
|                 <div class="set-entry"> | ||||
|                     <input type="checkbox" id="{{ option_name }}-{{ group_name }}" name="{{ option_name }}||{{ group_name }}" value="1" {{ "checked" if grop_name in option.default }} /> | ||||
|                     <input type="checkbox" id="{{ option_name }}-{{ group_name }}" name="{{ option_name }}||{{ group_name }}" value="1" {{ "checked" if group_name in option.default }} /> | ||||
|                     <label for="{{ option_name }}-{{ group_name }}">{{ group_name }}</label> | ||||
|                 </div> | ||||
|             {% endif %} | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue