Newer
Older
postorius / templates / mailman-django / list_selector.html
  1. {% load i18n %}
  2.  
  3. {% block selector %}
  4.  
  5. {%if lists %}
  6. <form id=list_selector method="post" action="/lists/">
  7. <select name="list">
  8. {% for list in lists %}
  9. <option selected="" value="{{list.fqdn_listname}}">{{list.real_name}}</option>
  10. {% endfor %}
  11. </select>
  12. <input type="submit" value="Go to">
  13. </div></form>
  14. </form>
  15. {%endif%}
  16. {% endblock %}