datatracker/ietf/templates/apps.html
Henrik Levkowetz 5872696834 Moving ietf to trunk/ietf
[[Split portion of a mixed commit.]]
 - Legacy-Id: 96.1
2007-05-04 12:37:28 +00:00

16 lines
245 B
HTML

{% extends "base.html" %}
{% block content %}
<blockquote>
<h3>Currently available applications:</h3>
<ul>
{% for app in apps %}
<li><a href="/{{ app }}">{{ app }}</li>
{% endfor %}
</ul>
</blockquote>
{% endblock %}