Factor out the page footer, and use it also in the idtracker's base.html

- Legacy-Id: 707
This commit is contained in:
Henrik Levkowetz 2007-06-27 17:38:53 +00:00
parent 42245b73b4
commit fe3e063f37
3 changed files with 7 additions and 5 deletions

View file

@ -48,9 +48,7 @@ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
{% block content %}{% endblock %}
{% block main_content %}{% endblock %}
</div>
<hr/>
<div style="width: 100%; height: 1em; font-size: 9pt; font-style: italic;"><span style="float: left;">Made with <a href="http://www.djangoproject.com/">django</a></span><span style="float: right;">v{{ version_num }}, {{ revision_date }} - <a href="mailto:webmaster@ietf.org">webmaster@ietf.org</a></span></div>
<!-- <a href="http://www.djangoproject.com/"><img src="http://media.djangoproject.com/img/badges/djangomade124x25.gif" border="0" alt="Made with Django." title="Made with Django." /></a> -->
{% include "footer.html" %}
{% include "debug.html" %}
</body>
</html>

View file

@ -0,0 +1,5 @@
<hr/>
<div style="width: 100%; height: 1em; font-size: 9pt; font-style: italic;">
<span style="float: left;">Made with <a href="http://www.djangoproject.com/">django</a></span>
<span style="float: right;">v{{ version_num }}, {{ revision_date }} - <a href="mailto:webmaster@ietf.org">webmaster@ietf.org</a></span>
</div>

View file

@ -22,8 +22,7 @@
{% block idcontent %}
{% endblock %}
<hr/>
<a href="http://www.djangoproject.com/"><img src="http://media.djangoproject.com/img/badges/djangomade124x25.gif" border="0" alt="Made with Django." title="Made with Django." /></a>
{% include "footer.html" %}
{% include "debug.html" %}
</body>