Skip to content

Commit

Permalink
Merge branch 'release/3.2.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
tarunbhardwaj committed Jan 12, 2015
2 parents 2a3502e + c3a2c17 commit ca7ba9b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -125,7 +125,8 @@ def run(self):
test_loader='trytond.test_loader:Loader',
tests_require=[
'pycountry',
'openlabs_payment_gateway_authorize_net',
'openlabs_payment_gateway_authorize_net >= %s.%s, < %s.%s' %
(major_version, minor_version, major_version, minor_version + 1),
'cssutils',
],
cmdclass={
Expand Down
4 changes: 2 additions & 2 deletions templates/webshop/checkout/payment_method.jinja
Expand Up @@ -86,7 +86,7 @@
</div>
</div>
<button type="submit" class="btn btn-warning btn-lg btn-block" id="payment-btn">
<i class="fa fa-lock">
<i class="fa fa-lock"></i>
{{ _('Pay Now') }}
<i class="fa fa-spin fa-spinner hidden"></i>
</button>
Expand All @@ -100,7 +100,7 @@
<div class="payment-container">
<h4><span class="underline">{{ _('More Payment methods') }}</span></h4>
{% for method_id, method_name in payment_form.alternate_payment_method.choices %}
<div class="tab-pane fade center" id="method-{{ method_id }}">
<div class="tab-pane center" id="method-{{ method_id }}">
{% set method = PaymentMethod(method_id) %}
<p><strong><span class="text-success">{{ method.instructions|safe }}</strong></p>
<form method="post" autocomplete="off">
Expand Down
10 changes: 8 additions & 2 deletions templates/webshop/search-results.jinja
Expand Up @@ -30,6 +30,7 @@
{% endfor %}
</ul>
{% endfor %}
<a href="{{ url_for('nereid.website.quick_search', q=request.args.get('q', '')) }}">{% trans %}Clear Filters{% endtrans %}</a>
</form>
</div>
</div>
Expand Down Expand Up @@ -87,8 +88,13 @@

<div class="row">
<div class="col-md-12">
<div class="alert alert-warning">
{% trans %}Oops! No Products found for your search criteria. Try with something else.{% endtrans %}
<div id="not-found" class="alert alert-warning">
{% trans %}Oops! No Products found for your search criteria.{% endtrans %}
{% if facets %}
<br>
{% trans %} Try a search without filters, click{% endtrans %}
<a href='{{ url_for('nereid.website.quick_search', q=request.args.get('q', '')) }}'>{% trans %}here{% endtrans %}</a>
{% endif %}
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
version=3.2.2.0
version=3.2.2.1
depends:
nereid
nereid_cms
Expand Down

0 comments on commit ca7ba9b

Please sign in to comment.