{% 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

Community Details

Posts with this many flags are auto-hidden. 0 = disabled.

Categories

{% if categories.is_empty() %}
No categories yet.
{% else %} {% for cat in categories %} {% endfor %}
Name Slug Order Actions
{{ 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 %}
{% endif %}

Add Category

Tags

{% if tags.is_empty() %}
No tags yet.
{% else %} {% for tag in tags %} {% endfor %}
Name Slug Actions
{{ tag.name }} {{ tag.slug }}
{% endif %}

Add Tag

{% endblock %}