forked from mirrors/bookwyrm
172 lines
6.8 KiB
HTML
172 lines
6.8 KiB
HTML
{% extends 'settings/layout.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Site Settings" %}{% endblock %}
|
|
|
|
{% block header %}{% trans "Site Settings" %}{% endblock %}
|
|
|
|
{% block site-subtabs %}
|
|
<ul class="menu-list">
|
|
<li><a href="#instance-info">{% trans "Instance Info" %}</a></li>
|
|
<li><a href="#display">{% trans "Display" %}</a></li>
|
|
<li><a href="#footer">{% trans "Footer Content" %}</a></li>
|
|
<li><a href="#registration">{% trans "Registration" %}</a></li>
|
|
</ul>
|
|
{% endblock %}
|
|
|
|
{% block panel %}
|
|
{% if success %}
|
|
<div class="notification is-success is-light">
|
|
<span class="icon icon-check" aria-hidden="true"></span>
|
|
<span>
|
|
{% trans "Settings saved" %}
|
|
</span>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if site_form.errors %}
|
|
<div class="notification is-danger is-light">
|
|
<span class="icon icon-x" aria-hidden="true"></span>
|
|
<span>
|
|
{% trans "Unable to save settings" %}
|
|
</span>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<form
|
|
action="{% url 'settings-site' %}"
|
|
method="POST"
|
|
class="content"
|
|
enctype="multipart/form-data"
|
|
>
|
|
{% csrf_token %}
|
|
<section class="block" id="instance_info">
|
|
<h2 class="title is-4">{% trans "Instance Info" %}</h2>
|
|
<div class="box">
|
|
<div class="field">
|
|
<label class="label" for="id_name">{% trans "Instance Name:" %}</label>
|
|
{{ site_form.name }}
|
|
</div>
|
|
<div class="field">
|
|
<label class="label" for="id_instance_tagline">{% trans "Tagline:" %}</label>
|
|
{{ site_form.instance_tagline }}
|
|
</div>
|
|
<div class="field">
|
|
<label class="label" for="id_instance_description">{% trans "Instance description:" %}</label>
|
|
{{ site_form.instance_description }}
|
|
</div>
|
|
<div class="field">
|
|
<label class="label mb-0" for="id_instance_short_description">{% trans "Short description:" %}</label>
|
|
<p class="help" id="desc_instance_short_description">{% trans "Used when the instance is previewed on joinbookwyrm.com. Does not support HTML or Markdown." %}</p>
|
|
{{ site_form.instance_short_description }}
|
|
</div>
|
|
<div class="field">
|
|
<label class="label" for="id_code_of_conduct">{% trans "Code of conduct:" %}</label>
|
|
{{ site_form.code_of_conduct }}
|
|
</div>
|
|
<div class="field">
|
|
<label class="label" for="id_privacy_policy">{% trans "Privacy Policy:" %}</label>
|
|
{{ site_form.privacy_policy }}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<hr aria-hidden="true">
|
|
|
|
<section class="block" id="display">
|
|
<h2 class="title is-4">{% trans "Display" %}</h2>
|
|
<div class="box">
|
|
<h3 class="title is-5">{% trans "Images" %}</h3>
|
|
<div class="block is-flex">
|
|
<div>
|
|
<label class="label" for="id_logo">{% trans "Logo:" %}</label>
|
|
{{ site_form.logo }}
|
|
</div>
|
|
<div>
|
|
<label class="label" for="id_logo_small">{% trans "Logo small:" %}</label>
|
|
{{ site_form.logo_small }}
|
|
</div>
|
|
<div>
|
|
<label class="label" for="id_favicon">{% trans "Favicon:" %}</label>
|
|
{{ site_form.favicon }}
|
|
</div>
|
|
</div>
|
|
|
|
<h3 class="title is-5">{% trans "Themes" %}</h3>
|
|
<div class="block">
|
|
<label class="label" for="id_default_theme">
|
|
{% trans "Default theme:" %}
|
|
</label>
|
|
<div class="select">
|
|
{{ site_form.default_theme }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<hr aria-hidden="true">
|
|
|
|
<section class="block" id="footer">
|
|
<h2 class="title is-4">{% trans "Footer Content" %}</h2>
|
|
<div class="box">
|
|
<div class="field">
|
|
<label class="label" for="id_support_link">{% trans "Support link:" %}</label>
|
|
<input type="text" name="support_link" maxlength="255" class="input" id="id_support_link" placeholder="https://www.patreon.com/bookwyrm"{% if site.support_link %} value="{{ site.support_link }}"{% endif %}>
|
|
</div>
|
|
<div class="field">
|
|
<label class="label" for="id_support_title">{% trans "Support title:" %}</label>
|
|
<input type="text" name="support_title" maxlength="100" class="input" id="id_support_title" placeholder="Patreon"{% if site.support_title %} value="{{ site.support_title }}"{% endif %}>
|
|
</div>
|
|
<div class="field">
|
|
<label class="label" for="id_admin_email">{% trans "Admin email:" %}</label>
|
|
{{ site_form.admin_email }}
|
|
</div>
|
|
<div class="field">
|
|
<label class="label" for="id_footer_item">{% trans "Additional info:" %}</label>
|
|
{{ site_form.footer_item }}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<hr aria-hidden="true">
|
|
|
|
<section class="block" id="registration">
|
|
<h2 class="title is-4">{% trans "Registration" %}</h2>
|
|
<div class="box">
|
|
<div class="field">
|
|
<label class="label" for="id_allow_registration">
|
|
{{ site_form.allow_registration }}
|
|
{% trans "Allow registration" %}
|
|
</label>
|
|
</div>
|
|
<div class="field">
|
|
<label class="label" for="id_allow_invite_requests">
|
|
{{ site_form.allow_invite_requests }}
|
|
{% trans "Allow invite requests" %}
|
|
</label>
|
|
</div>
|
|
<div class="field">
|
|
<label class="label mb-0" for="id_require_confirm_email">
|
|
{{ site_form.require_confirm_email }}
|
|
{% trans "Require users to confirm email address" %}
|
|
</label>
|
|
<p class="help" id="desc_require_confirm_email">{% trans "(Recommended if registration is open)" %}</p>
|
|
</div>
|
|
<div class="field">
|
|
<label class="label" for="id_registration_closed_text">{% trans "Registration closed text:" %}</label>
|
|
{{ site_form.registration_closed_text }}
|
|
</div>
|
|
<div class="field">
|
|
<label class="label" for="id_invite_request_text">{% trans "Invite request text:" %}</label>
|
|
{{ site_form.invite_request_text }}
|
|
|
|
{% include 'snippets/form_errors.html' with errors_list=site_form.invite_request_text.errors id="desc_invite_request_text" %}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<footer class="block">
|
|
<button class="button is-primary" type="submit">{% trans "Save" %}</button>
|
|
</footer>
|
|
</form>
|
|
{% endblock %}
|