|  | @@ -62,6 +62,9 @@
 | 
	
		
			
			| 62 | 62 |              <form method="post" action="/">
 | 
	
		
			
			| 63 | 63 |                  <div class="left">
 | 
	
		
			
			| 64 | 64 |                  <input type="hidden" name="q" value="{{ q }}" />
 | 
	
		
			
			|  | 65 | +                {% for category in selected_categories %}
 | 
	
		
			
			|  | 66 | +                <input type="hidden" name="category_{{ category }}" value="1"/>
 | 
	
		
			
			|  | 67 | +                {% endfor %}
 | 
	
		
			
			| 65 | 68 |                  <input type="hidden" name="pageno" value="{{ pageno-1 }}" />
 | 
	
		
			
			| 66 | 69 |                  <input type="submit" value="<< {{ _('previous page') }}" />
 | 
	
		
			
			| 67 | 70 |                  </div>
 | 
	
	
		
			
			|  | @@ -69,6 +72,9 @@
 | 
	
		
			
			| 69 | 72 |          {% endif %}
 | 
	
		
			
			| 70 | 73 |          <form method="post" action="/">
 | 
	
		
			
			| 71 | 74 |              <div class="left">
 | 
	
		
			
			|  | 75 | +            {% for category in selected_categories %}
 | 
	
		
			
			|  | 76 | +            <input type="hidden" name="category_{{ category }}" value="1"/>
 | 
	
		
			
			|  | 77 | +            {% endfor %}
 | 
	
		
			
			| 72 | 78 |              <input type="hidden" name="q" value="{{ q }}" />
 | 
	
		
			
			| 73 | 79 |              <input type="hidden" name="pageno" value="{{ pageno+1 }}" />
 | 
	
		
			
			| 74 | 80 |              <input type="submit" value="{{ _('next page') }} >>" />
 |