13 lines
		
	
	
		
			732 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			732 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% from 'oscar/macros.html' import icon %}
 | |
| <form method="{{ method or 'POST' }}" action="{{ url_for('index') }}" id="search_form" role="search">
 | |
|     <div class="input-group col-sm-12">
 | |
|         <input type="search" name="q" class="form-control" id="q" placeholder="{{ _('Search for...') }}" autocomplete="off" value="{{ q }}">
 | |
|         <span class="input-group-btn">
 | |
|             <button type="submit" class="btn btn-default"><span class="hide_if_nojs">{{ icon('search') }}</span><span class="hidden active_if_nojs">{{ _('Start search') }}</span></button>
 | |
|         </span>
 | |
|     </div>
 | |
|     <div class="input-group col-sm-12 advanced">
 | |
|         {% include 'oscar/advanced.html' %}
 | |
|     </div>
 | |
| </form><!-- / #search_form_full -->
 | 
