Avoid error when Store cannot be reached.

This commit is contained in:
2018-01-25 10:16:29 +01:00
parent 06414ab0ed
commit 0908a13519
2 changed files with 7 additions and 3 deletions

View File

@@ -22,13 +22,13 @@ style(type='text/css').
| Your subscription is active
h4 Thank you for supporting us!
hr
p Subscription expires on: <strong>{{ store_user['expiration_date'][:10] }}</strong>
p Subscription expires on: <strong>{{ expiration_date }}</strong>
| {% else %}
h3.subscription-missing
i.pi-info
a(href="{{renew_url}}") Your subscription can be renewed
hr
p.text-danger Subscription expired on: <strong>{{ store_user['expiration_date'][:10] }}</strong>
p.text-danger Subscription expired on: <strong>{{ expiration_date }}</strong>
p
a.btn.btn-success(href="{{renew_url}}") Renew now
| {% endif %}