mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 13:34:28 +00:00
Update template_config
This commit is contained in:
parent
04f55b555e
commit
b242be671a
3 changed files with 26 additions and 21 deletions
|
@ -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 {
|
.omnicontainer {
|
||||||
width: 380px;
|
width: 380px;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
@ -731,6 +750,7 @@ table {
|
||||||
|
|
||||||
.fiorygi {
|
.fiorygi {
|
||||||
grid-column: 2;
|
grid-column: 2;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fiorygi.game-score {
|
.fiorygi.game-score {
|
||||||
|
@ -962,23 +982,4 @@ table {
|
||||||
|
|
||||||
#edit-css {
|
#edit-css {
|
||||||
font-size: medium;
|
font-size: medium;
|
||||||
}
|
|
||||||
|
|
||||||
#members-list {
|
|
||||||
list-style: none;
|
|
||||||
|
|
||||||
li {
|
|
||||||
&::before {
|
|
||||||
content: "•";
|
|
||||||
display: inline-block;
|
|
||||||
width: 1em;
|
|
||||||
margin-left: -1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
&.admin {
|
|
||||||
&::before {
|
|
||||||
color: #ffff00;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
|
@ -25,12 +25,16 @@ radio_messages_enabled = False
|
||||||
radio_messages_every = 5
|
radio_messages_every = 5
|
||||||
# Command prefix
|
# Command prefix
|
||||||
command_prefix = !
|
command_prefix = !
|
||||||
|
# Discord invite link
|
||||||
|
invite_link =
|
||||||
|
|
||||||
[Telegram]
|
[Telegram]
|
||||||
# Telegram bot token, obtainable at https://t.me/BotFather
|
# Telegram bot token, obtainable at https://t.me/BotFather
|
||||||
bot_token =
|
bot_token =
|
||||||
# Telegram main group id, where errors should be reported
|
# Telegram main group id, where errors should be reported
|
||||||
main_group =
|
main_group =
|
||||||
|
# Telegram invite link
|
||||||
|
invite_link =
|
||||||
|
|
||||||
[Flask]
|
[Flask]
|
||||||
# Secret key, used to encrypt cookies
|
# Secret key, used to encrypt cookies
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<div class="box">
|
<div class="box" id="members-box">
|
||||||
<div class="upper-box">
|
<div class="upper-box">
|
||||||
Membri
|
Membri
|
||||||
</div>
|
</div>
|
||||||
<div class="lower-box">
|
<div class="lower-box">
|
||||||
<ul>
|
<ul>
|
||||||
{% for royal in royals %}
|
{% 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 %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue