mirror of
				https://github.com/ProjectSynthoria/SynthoriaArchive.git
				synced 2025-11-04 09:55:46 +02:00 
			
		
		
		
	Merge pull request #33 from adsko/test-26
Fixed problem with saving filter after reloading (#26)
This commit is contained in:
		
						commit
						787569ab2b
					
				
					 1 changed files with 3 additions and 3 deletions
				
			
		| 
						 | 
					@ -148,9 +148,9 @@
 | 
				
			||||||
						<input type="text" class="form-control" name="q" placeholder="Search..." value="{{ search["term"] if search is defined else '' }}">
 | 
											<input type="text" class="form-control" name="q" placeholder="Search..." value="{{ search["term"] if search is defined else '' }}">
 | 
				
			||||||
						<div class="input-group-btn" id="navFilter">
 | 
											<div class="input-group-btn" id="navFilter">
 | 
				
			||||||
							<select class="selectpicker show-tick" title="Filter" data-width="120px" name="f">
 | 
												<select class="selectpicker show-tick" title="Filter" data-width="120px" name="f">
 | 
				
			||||||
								<option value="0" title="Show all" {% if search is defined and search["filter"] == "0" %}selected{% else %}selected{% endif %}>Show all</option>
 | 
													<option value="0" title="Show all" {% if search is defined and search["quality_filter"] == "0" %}selected{% else %}selected{% endif %}>Show all</option>
 | 
				
			||||||
								<option value="1" title="No remakes" {% if search is defined and search["filter"] == "1" %}selected{% endif %}>No remakes</option>
 | 
													<option value="1" title="No remakes" {% if search is defined and search["quality_filter"] == "1" %}selected{% endif %}>No remakes</option>
 | 
				
			||||||
								<option value="2" title="Trusted only" {% if search is defined and search["filter"] == "2" %}selected{% endif %}>Trusted only</option>
 | 
													<option value="2" title="Trusted only" {% if search is defined and search["quality_filter"] == "2" %}selected{% endif %}>Trusted only</option>
 | 
				
			||||||
							</select>
 | 
												</select>
 | 
				
			||||||
						</div>
 | 
											</div>
 | 
				
			||||||
						<div class="input-group-btn" id="navFilter">
 | 
											<div class="input-group-btn" id="navFilter">
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue