1234567891011121314151617 |
- {% extends 'base.html' %}
- {% block header %}
- <h1>Message Base Areas</h1>
- {% endblock %}
- {% block content %}
- {% for base in bases.keys() %}
- <div><a href="{{ url_for('display_messages', area=base) }}">{{ base }}</a></div>
- <div> </div>
- {% endfor %}
- <p>Sorry, there's a "bug" in how the messages are on the BBS.
- Every Sunday messages are packed, and the message counter gets reset to 1.
- This results in links to messages breaking after Sunday's packing.</p>
- <p>Sorry.</p>
- {% endblock %}
|