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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
{% extends "main/base.html" %}
{% block title %}Rules{% endblock %}
{% block og_title %}Rules{% endblock %}
{% block og_description %}The server rules, along with an explanation of what happens when they're broken{% endblock %}
{% block content %}
<div class="uk-section">
<div class="uk-container uk-container-small">
<article class="uk-article">
<h1 class="uk-article-title hover-title" id="top">
Rules
<a href="#top" class="uk-text-primary" title="Permanent link to this header">
<i class="fas fa-paragraph" data-fa-transform="shrink-8"></i>
</a>
</h1>
<p class="uk-article-meta">
Keeping our noses clean since 2017
</p>
<p>
We have a small but strict set of rules on our server. Please read over them and take them on board -
if you don't understand anything or need some clarification, feel free to ask any staff member!
</p>
<ol>
<li>
Be polite, and do not spam
</li>
<li>
Follow the <a href="https://discordapp.com/guidelines">Discord community guidelines</a>
</li>
<li>
Be patient both with users asking questions, and the users answering them
</li>
<li>
Listen to and respect the staff members - we're here to help, but we're all human beings
</li>
<li>
All discussion should be kept within the relevant channels for the subject.
<ul>
<li>
General Python help and support requests go to one of the three help channels - pick
the one that is the quietest at the time.
</li>
<li>
The topical channels can be used for help and support requests, but general discussion
about the subjects covered by them should go there also.
</li>
<li>
If you're working with one of the bots, we ask you to specifically do that in
<code>#bot-commands</code>, to keep the other channels clear of bot output.
</li>
<li>
If you're working on a Python project or something directly related to our server, feel
free to post a link to it in <code>#show-your-projects</code>. We prefer links to source
code over websites, but we'll also accept screenshots and videos if you're not yet ready
to release the code.
<ul>
<li>
If you or someone else posts a project to <code>#show-your-projects</code>, you may
discuss it in <code>#show-your-projects-discussion</code>. <code>#show-your-projects</code>
is intended to be a listing channel, and any discussion there is removed regularly.
</li>
<li>
Please note, we <strong>do not</strong> allow postings for communities (such as
forums or other Discord servers) or commercial projects.
</li>
</ul>
</li>
</ul>
</li>
<li>
This is an English-speaking server. Please speak English to the best of your ability. Google
translate is fine if you're not sure.
</li>
<li>
Keep all discussions SFW - No <a href="https://www.wikiwand.com/en/Ecchi">ecchi</a>
or <a href="https://www.wikiwand.com/en/Not_safe_for_work">NSFW</a> media. If you wouldn't want
the entire world to know about your interest in it, it doesn't belong on this server.
</li>
<li>
We do not allow advertisements for communities or commercial projects - Contact us directly if
you want to discuss a partnership!
</li>
</ol>
<h1 class="uk-article-title hover-title" id="infractions">
Infractions
<a href="#infractions" class="uk-text-primary" title="Permanent link to this header">
<i class="fas fa-paragraph" data-fa-transform="shrink-8"></i>
</a>
</h1>
<p class="uk-article-meta">
Why you gotta be so rude?
</p>
<p>
We have a generally no-nonsense policy when it comes to our rules. If you notice someone breaking
them, feel free to mention or DM a staff member and we'll try to deal with it as soon as possible.
</p>
<p>
The possible actions we take based on infractions can include the following:
</p>
<ul>
<li>A public verbal/textual warning</li>
<li>A short temporary mute</li>
<li>A long temporary mute</li>
<li>A kick from the server</li>
<li>A temporary ban from the server</li>
<li>A permanent ban from the server</li>
</ul>
<p>
While we do discuss more serious matters internally before handing out a punishment, simpler
infractions are dealt with directly by individual staffers and the punishment they hand out is left
to their own decision-making.
</p>
</article>
</div>
</div>
{% endblock %}
|