~linuxgoose/bocpress

ref: a72c4771fa8b0612594b4b98382b3e2605399074 bocpress/main/templates/main/guides_comments.html -rw-r--r-- 1.5 KiB
a72c4771Jordan Robinson add tags to draft posts list 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{% extends 'main/layout.html' %}

{% load static %}

{% block title %}Comments Guide{% endblock %}

{% block content %}
<main>
    <h1>Comments Guide</h1>
    <p>
        BōcPress supports comments on a blog post level. Comments are optional
        and can be enabled blog-wide from the
        <a href="{% url 'user_update' %}">settings page</a>.
    </p>
    <ul>
        <li>Comments are optionally eponymous.</li>
        <li>
            There are no configuration options for comments other than enabling
            them.
        </li>
        <li>
            Comments by blog authors are in bold font to make it clear that
            they are from them.
        </li>
        <li>
            No visitor comments are published immediately. They are all held
            for moderation by the blog author.
        </li>
        <li>
            Blog authors receive an email notification when there is a new
            comment in any of their posts.
        </li>
        <li>
            Blog authors have to approve a comment if they want it to be
            public. By default, it remains hidden and not approved.
        </li>
        <li>
            Blog authors can approve a comment either from each blog post
            page or from the
            <a href="{% url 'comment_pending' %}">Comments pending</a>
            workshop page.
        </li>
        <li>Commenters do not get any notification, in any case.</li>
    </ul>

</main>

{% include 'partials/footer.html' %}

{% endblock content %}