list.html 491 B

1234567891011121314151617
  1. {% extends 'base.html' %}
  2. {% block header %}
  3. <h1>Message Base Areas</h1>
  4. {% endblock %}
  5. {% block content %}
  6. {% for base in bases.keys() %}
  7. <div><a href="{{ url_for('display_messages', area=base) }}">{{ base }}</a></div>
  8. <div>&nbsp;</div>
  9. {% endfor %}
  10. <p>Sorry, there's a "bug" in how the messages are on the BBS.
  11. Every Sunday messages are packed, and the message counter gets reset to 1.
  12. This results in links to messages breaking after Sunday's packing.</p>
  13. <p>Sorry.</p>
  14. {% endblock %}