1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Update template_config

This commit is contained in:
Steffo 2019-01-06 19:54:49 +01:00
parent 04f55b555e
commit b242be671a
3 changed files with 26 additions and 21 deletions

View file

@ -213,6 +213,25 @@ table {
}
}
ul {
list-style: none;
li {
&::before {
content: "•";
display: inline-block;
width: 1em;
margin-left: -1em;
}
&.admin {
&::before {
color: #ffff00;
}
}
}
}
.omnicontainer {
width: 380px;
margin-left: auto;
@ -731,6 +750,7 @@ table {
.fiorygi {
grid-column: 2;
text-align: center;
}
.fiorygi.game-score {
@ -962,23 +982,4 @@ table {
#edit-css {
font-size: medium;
}
#members-list {
list-style: none;
li {
&::before {
content: "•";
display: inline-block;
width: 1em;
margin-left: -1em;
}
&.admin {
&::before {
color: #ffff00;
}
}
}
}

View file

@ -25,12 +25,16 @@ radio_messages_enabled = False
radio_messages_every = 5
# Command prefix
command_prefix = !
# Discord invite link
invite_link =
[Telegram]
# Telegram bot token, obtainable at https://t.me/BotFather
bot_token =
# Telegram main group id, where errors should be reported
main_group =
# Telegram invite link
invite_link =
[Flask]
# Secret key, used to encrypt cookies

View file

@ -1,11 +1,11 @@
<div class="box">
<div class="box" id="members-box">
<div class="upper-box">
Membri
</div>
<div class="lower-box">
<ul>
{% for royal in royals %}
<li><a href="/profile/{{ royal.username }}">{{ royal.username }}</a></li>
<li class="{% if royal.role == "Admin" %}admin{% endif %}"><a href="/profile/{{ royal.username }}">{{ royal.username }}</a></li>
{% endfor %}
</ul>
</div>