Use same quotation style
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{% load i18n %}
|
||||
<div class="block notice">
|
||||
<h4>{% trans "Help" %}</h4>
|
||||
<h4>{% trans 'Help' %}</h4>
|
||||
<p>{% blocktrans %}Enter the desired search keywords separated by space. Only the top {{ search_results_limit }} results will be available.{% endblocktrans %}</p>
|
||||
</div>
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
{% extends "main/base.html" %}
|
||||
{% extends 'main/base.html' %}
|
||||
{% load i18n %}
|
||||
{% block title %} :: {% trans "Search results" %}{% endblock %}
|
||||
{% block title %} :: {% trans 'Search results' %}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% if form %}
|
||||
{% include "search_results_subtemplate.html" %}
|
||||
{% include 'search_results_subtemplate.html' %}
|
||||
{% endif %}
|
||||
{% if query_string %}
|
||||
{% include "main/generic_list_subtemplate.html" %}
|
||||
{% include 'main/generic_list_subtemplate.html' %}
|
||||
{% endif %}
|
||||
{% if not form and not query_string %}
|
||||
{% include "main/generic_list_subtemplate.html" %}
|
||||
{% include 'main/generic_list_subtemplate.html' %}
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{% with "get" as submit_method %}
|
||||
{% with 'get' as submit_method %}
|
||||
{% with form_title as title %}
|
||||
{% include "main/generic_form_subtemplate.html" %}
|
||||
{% include 'main/generic_form_subtemplate.html' %}
|
||||
{% endwith %}
|
||||
{% endwith %}
|
||||
|
||||
Reference in New Issue
Block a user