root: fix passbook.footer_links not being rendered

This commit is contained in:
Jens Langhammer
2020-07-08 13:18:33 +02:00
parent 9feea155fe
commit 429627494c
6 changed files with 21 additions and 8 deletions

View File

@ -46,10 +46,11 @@
<footer class="pf-c-login__footer">
<p></p>
<ul class="pf-c-list pf-m-inline">
{% for link in config.passbook.footer_links %}
<li>
<a href="https://passbook.beryju.org/">{% trans 'Documentation' %}</a>
<a href="{{ link.href }}">{{ link.name }}</a>
</li>
<!-- TODO:load config.passbook.footer.links -->
{% endfor %}
</ul>
</footer>
</div>

View File

@ -51,10 +51,11 @@
<footer class="pf-c-login__footer">
<p></p>
<ul class="pf-c-list pf-m-inline">
{% for link in config.passbook.footer_links %}
<li>
<a href="https://passbook.beryju.org/">{% trans 'Documentation' %}</a>
<a href="{{ link.href }}">{{ link.name }}</a>
</li>
<!-- TODO: load config.passbook.footer.links -->
{% endfor %}
</ul>
</footer>
</div>