{% extends "base.html" %} {% block title %}Game Categories — Admin — {{ config.BBS_NAME }}{% endblock %} {% block content %}

Game Categories

Add Category Dashboard
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for cat, msg in messages %}
{{ msg }}
{% endfor %} {% endif %} {% endwith %} {% for cat in categories %} {% else %} {% endfor %}
Name Slug Sort Order Actions
{{ cat.name }} {{ cat.slug }} {{ cat.sort_order }}
No categories yet.

The slug is stored on each game. Renaming a slug here won't update existing games — edit the game to reassign it. Deleting a category does not affect games; they keep their slug value.

{% endblock %}