Use same quotation style

This commit is contained in:
Roberto Rosario
2014-10-02 01:15:47 -04:00
parent 2c12c61785
commit 488efbe43f
3 changed files with 8 additions and 8 deletions

View File

@@ -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>

View File

@@ -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 %}

View File

@@ -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 %}