{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% block title %}Non-Working Group email lists{% endblock %} {% block content %} {% origin %} <h1>Non-Working Group email lists</h1> <table class="table table-condensed table-striped"> <thead> <tr> <th>Name</th><th>Description</th><th>List Info</th> </tr> </thead> <tbody> {% for list in lists %} <tr> <td>{{ list.name.lower }}</td> <td>{{ list.description }}</td> <td><a href="{{ list.info_url }}">{{ list.info_url.lower }}</a></td> </tr> {% endfor %} </tbody> </table> {% endblock %}