2024-02-07 17:31:12 +13:00
{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %}
{% extends 'themes/' + theme() + '/base.html' %}
{% else %}
{% extends "base.html" %}
{% endif %} %}
2023-12-17 00:12:49 +13:00
{% from 'bootstrap/form.html' import render_form %}
2024-04-14 20:05:40 +12:00
{% set active_child = 'admin_federation' %}
2023-12-17 00:12:49 +13:00
{% block app_content %}
< div class = "row" >
< div class = "col" >
2024-04-14 20:05:40 +12:00
< h1 > {{ _('Federation') }}< / h1 >
{{ render_form(form) }}
2023-12-17 00:12:49 +13:00
< / div >
< / div >
2024-04-14 20:05:40 +12:00
< hr / >
2024-09-11 19:14:12 -04:00
< div class = "row" >
< div class = "column" >
< p > Use this to "pre-load" the top 50 known threadiverse communities, as rnaked by posts and activity. The list of communities pulls from the same list as < a href = "https://lemmyverse.net/communities" > LemmyVerse< / a > . NSFW communities and communities from banned instances are excluded.< / p >
{{ render_form(preload_form) }}
< / div >
< / div >
< hr / >
2023-12-17 00:12:49 +13:00
< div class = "row" >
< div class = "col" >
2024-04-14 20:05:40 +12:00
{% include 'admin/_nav.html' %}
2023-12-17 00:12:49 +13:00
< / div >
< / div >
2024-04-14 20:05:40 +12:00
< hr / >
2023-12-17 00:12:49 +13:00
{% endblock %}