Browse Source

banned.html: fix ban dates lack of space

pull/116/head
Zankaria 3 weeks ago
parent
commit
9de120201d
  1. 6
      templates/banned.html

6
templates/banned.html

@ -31,7 +31,7 @@
{% endif %}
<p>
{% trans %}Your ban was filed on{% endtrans %}
<strong>{{ ban.created|date(config.ban_date) }}</strong>
<strong> {{ ban.created|date(config.ban_date) }}</strong>
{% if config.show_modname %}
{% if ban.username %}
{% trans %}by{% endtrans %} <strong> {{ ban.username }} </strong>
@ -44,9 +44,7 @@
{% trans %} has since expired. Refresh the page to continue.{% endtrans %}
{% elseif ban.expires %}
{% trans %}expires{% endtrans %} <span id="countdown">{{ ban.expires|until }}</span> {% trans %}from now, which is on{% endtrans %}
<strong>
{{ ban.expires|date(config.ban_date) }}
</strong>
<strong> {{ ban.expires|date(config.ban_date) }} </strong>
<script>
var secondsLeft = {{ ban.expires - time() }};
var end = new Date().getTime() + secondsLeft*1000;

Loading…
Cancel
Save