{% extends "base.html" %}
{% block title %}Settings — {{ community_name }} — Multithreaded{% endblock %}
{% block head %}{% endblock %}
{% block header %}{% include "partials/site_header.html" %}{% endblock %}
{% block content %}
Community Settings
Categories
{% if categories.is_empty() %}
No categories yet.
{% else %}
| Name |
Slug |
Order |
Actions |
{% for cat in categories %}
|
{{ cat.name }}
{% if let Some(desc) = cat.description %}
{{ desc }}
{% endif %}
|
{{ cat.slug }} |
{{ cat.sort_order }} |
edit
{% if !cat.is_first %}
{% endif %}
{% if !cat.is_last %}
{% endif %}
|
{% endfor %}
{% endif %}
Add Category
Tags
{% if tags.is_empty() %}
No tags yet.
{% else %}
| Name |
Slug |
Actions |
{% for tag in tags %}
| {{ tag.name }} |
{{ tag.slug }} |
|
{% endfor %}
{% endif %}
Add Tag
{% endblock %}