Mercurial > libervia-templates
changeset 21:24af9089aacd
default(event): added event_counter, which number of days left before event
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 21 May 2017 16:11:58 +0200 |
parents | 8fa2fd2e928e |
children | a6ec7f0fa877 |
files | default/event/invitation.html default/static/event.css |
diffstat | 2 files changed, 16 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/default/event/invitation.html Sun May 21 16:10:44 2017 +0200 +++ b/default/event/invitation.html Sun May 21 16:11:58 2017 +0200 @@ -9,6 +9,10 @@ {% endif %} </div> +{% if days_left is defined %} + <div id="event_counter" class="box">{% trans %}{{days_left}} days left{% endtrans %}</div> +{% endif %} + {% include 'event/attendance.html' %} {% if items is defined %}
--- a/default/static/event.css Sun May 21 16:10:44 2017 +0200 +++ b/default/static/event.css Sun May 21 16:11:58 2017 +0200 @@ -16,6 +16,17 @@ border-radius: 2em; } +#event_counter { + font-weight: bold; + font-size: 1.3em; + text-align: center; + width: 15em; + margin: 1em auto; + border: 2px solid #aab6c4; + background-color: #f3e7e7; + color: #2f3943; +} + .attendance { background-color: #9ca0a8; padding: 0 0.3em; @@ -25,7 +36,7 @@ } .attending { - width: 5em; + width: 6em; margin: 0 auto; }