2021-01-29 23:38:42 +00:00
|
|
|
{% extends 'settings/admin_layout.html' %}
|
|
|
|
{% block header %}Site Configuration{% endblock %}
|
|
|
|
|
|
|
|
{% block panel %}
|
|
|
|
|
|
|
|
<form action="{% url 'settings-site' %}" method="POST" class="content">
|
|
|
|
{% csrf_token %}
|
|
|
|
<section class="block" id="instance-info">
|
|
|
|
<h2 class="title is-4">Instance Info</h2>
|
|
|
|
<div class="control">
|
|
|
|
<label class="label" for="id_name">Instance Name:</label>
|
|
|
|
{{ site_form.name }}
|
|
|
|
</div>
|
|
|
|
<div class="control">
|
|
|
|
<label class="label" for="id_instance_tagline">Tagline:</label>
|
|
|
|
{{ site_form.instance_tagline }}
|
|
|
|
</div>
|
|
|
|
<div class="control">
|
|
|
|
<label class="label" for="id_instance_description">Instance description:</label>
|
|
|
|
{{ site_form.instance_description }}
|
|
|
|
</div>
|
|
|
|
<div class="control">
|
|
|
|
<label class="label" for="id_code_of_conduct">Code of conduct:</label>
|
|
|
|
{{ site_form.code_of_conduct }}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<hr aria-hidden="true">
|
|
|
|
|
|
|
|
<section class="block" id="images">
|
|
|
|
<h2 class="title is-4">Images</h2>
|
|
|
|
<div class="field is-grouped">
|
|
|
|
<div class="control">
|
|
|
|
<label class="label" for="id_logo">Logo:</label>
|
|
|
|
{{ site_form.logo }}
|
|
|
|
</div>
|
|
|
|
<div class="control">
|
|
|
|
<label class="label" for="id_logo_small">Logo small:</label>
|
|
|
|
{{ site_form.logo_small }}
|
|
|
|
</div>
|
|
|
|
<div class="control">
|
|
|
|
<label class="label" for="id_favicon">Favicon:</label>
|
|
|
|
{{ site_form.favicon }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<hr aria-hidden="true">
|
|
|
|
|
|
|
|
<section class="block" id="footer">
|
|
|
|
<h2 class="title is-4">Footer Content</h2>
|
|
|
|
<div class="control">
|
|
|
|
<label class="label" for="id_support_link">Support link:</label>
|
2021-01-29 23:50:46 +00:00
|
|
|
<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 %}>
|
2021-01-29 23:38:42 +00:00
|
|
|
</div>
|
|
|
|
<div class="control">
|
|
|
|
<label class="label" for="id_support_title">Support title:</label>
|
2021-01-29 23:50:46 +00:00
|
|
|
<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 %}>
|
2021-01-29 23:38:42 +00:00
|
|
|
</div>
|
|
|
|
<div class="control">
|
|
|
|
<label class="label" for="id_admin_email">Admin email:</label>
|
|
|
|
{{ site_form.admin_email }}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<hr aria-hidden="true">
|
|
|
|
|
|
|
|
<section class="block" id="registration">
|
|
|
|
<h2 class="title is-4">Registration</h2>
|
|
|
|
<div class="control">
|
|
|
|
<label class="label" for="id_allow_registration">Allow registration:
|
|
|
|
{{ site_form.allow_registration }}
|
|
|
|
</div>
|
|
|
|
<div class="control">
|
|
|
|
<label class="label" for="id_registration_closed_text">Registration closed text:</label>
|
|
|
|
{{ site_form.registration_closed_text }}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<footer class="block">
|
|
|
|
<button class="button is-primary" type="submit">Save Changes</button>
|
|
|
|
</footer>
|
|
|
|
</form>
|
|
|
|
{% endblock %}
|