Drop Python 2 (2/n): templates
This commit is contained in:
		
							parent
							
								
									1022228d95
								
							
						
					
					
						commit
						78df10fb55
					
				| @ -3,7 +3,7 @@ | |||||||
| <div class="center"> | <div class="center"> | ||||||
|     <h1>{{ _('Page not found') }}</h1> |     <h1>{{ _('Page not found') }}</h1> | ||||||
|     {% autoescape false %} |     {% autoescape false %} | ||||||
|     <p>{{ _('Go to %(search_page)s.', search_page=unicode('<a href="{}">{}</a>').format(url_for('index'), _('search page'))) }}</p> |     <p>{{ _('Go to %(search_page)s.', search_page='<a href="{}">{}</a>'.format(url_for('index'), _('search page'))) }}</p> | ||||||
|     {% endautoescape %} |     {% endautoescape %} | ||||||
| </div> | </div> | ||||||
| {% endblock %} | {% endblock %} | ||||||
|  | |||||||
| @ -3,7 +3,7 @@ | |||||||
| <div class="center"> | <div class="center"> | ||||||
|     <h1>{{ _('Page not found') }}</h1> |     <h1>{{ _('Page not found') }}</h1> | ||||||
|     {% autoescape false %} |     {% autoescape false %} | ||||||
|     <p>{{ _('Go to %(search_page)s.', search_page=unicode('<a href="{}">{}</a>').format(url_for('index'), _('search page'))) }}</p> |     <p>{{ _('Go to %(search_page)s.', search_page='<a href="{}">{}</a>'.format(url_for('index'), _('search page'))) }}</p> | ||||||
|     {% endautoescape %} |     {% endautoescape %} | ||||||
| </div> | </div> | ||||||
| {% endblock %} | {% endblock %} | ||||||
|  | |||||||
| @ -3,7 +3,7 @@ | |||||||
| <div class="text-center"> | <div class="text-center"> | ||||||
|     <h1>{{ _('Page not found') }}</h1> |     <h1>{{ _('Page not found') }}</h1> | ||||||
|     {% autoescape false %} |     {% autoescape false %} | ||||||
|     <p>{{ _('Go to %(search_page)s.', search_page=unicode('<a href="{}">{}</a>').format(url_for('index'), _('search page'))) }}</p> |     <p>{{ _('Go to %(search_page)s.', search_page='<a href="{}">{}</a>'.format(url_for('index'), _('search page'))) }}</p> | ||||||
|     {% endautoescape %} |     {% endautoescape %} | ||||||
| </div> | </div> | ||||||
| {% endblock %} | {% endblock %} | ||||||
|  | |||||||
| @ -3,7 +3,7 @@ | |||||||
| <div class="center"> | <div class="center"> | ||||||
|     <h1>{{ _('Page not found') }}</h1> |     <h1>{{ _('Page not found') }}</h1> | ||||||
|     {% autoescape false %} |     {% autoescape false %} | ||||||
|     <p>{{ _('Go to %(search_page)s.', search_page=unicode('<a href="{}">{}</a>').format(url_for('index'), _('search page'))) }}</p> |     <p>{{ _('Go to %(search_page)s.', search_page='<a href="{}">{}</a>'.format(url_for('index'), _('search page'))) }}</p> | ||||||
|     {% endautoescape %} |     {% endautoescape %} | ||||||
| </div> | </div> | ||||||
| {% endblock %} | {% endblock %} | ||||||
|  | |||||||
| @ -408,8 +408,6 @@ def render(template_name, override_theme=None, **kwargs): | |||||||
| 
 | 
 | ||||||
|     kwargs['results_on_new_tab'] = request.preferences.get_value('results_on_new_tab') |     kwargs['results_on_new_tab'] = request.preferences.get_value('results_on_new_tab') | ||||||
| 
 | 
 | ||||||
|     kwargs['unicode'] = str |  | ||||||
| 
 |  | ||||||
|     kwargs['preferences'] = request.preferences |     kwargs['preferences'] = request.preferences | ||||||
| 
 | 
 | ||||||
|     kwargs['brand'] = brand |     kwargs['brand'] = brand | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user