Add timestamp to footer

This commit is contained in:
leigh-mil 2019-04-01 14:30:43 -04:00
parent 610aef428d
commit 2feb10ea98
2 changed files with 7 additions and 0 deletions

View File

@ -11,6 +11,8 @@
bottom: 0;
width: 100%;
height: $footer-height;
color: $color-gray-dark;
font-size: 1.5rem;
.app-footer__info {
flex-grow: 1;

View File

@ -7,4 +7,9 @@
<span>{{ "footer.jedi_help_link_text" | translate }}</span>
</a>
</div>
{% if g.last_login %}
<div class="">
Last Login: <local-datetime timestamp='{{ g.last_login }}' format='MMM D YYYY H:mm Z'></local-datetime>
</div>
{% endif %}
</footer>