+ {% if css.bio %}
+
+
+ Bio
+
+
+ {{ bio }}
+
+ {% endif %}
+
+ {% with record = ryg %}
+ {% include "minis/ryg.html" %}
+ {% endwith %}
+ {% if tg %}
+ {% with record = tg %}
+ {% include "minis/tg.html" %}
+ {% endwith %}
+ {% endif %}
+ {% if discord %}
+ {% with record = discord %}
+ {% include "minis/discord.html" %}
+ {% endwith %}
+ {% endif %}
+ {% if steam %}
+ {% with record = steam %}
+ {% include "minis/steam.html" %}
+ {% endwith %}
+ {% endif %}
+ {% if dota %}
+ {% with record = dota %}
+ {% include "minis/dota.html" %}
+ {% endwith %}
+ {% endif %}
+ {% if osu %}
+ {% with record = osu %}
+ {% include "minis/osu.html" %}
+ {% endwith %}
+ {% endif %}
+ {% if lol %}
+ {% with record = lol %}
+ {% include "minis/lol.html" %}
+ {% endwith %}
+ {% endif %}
+ {% if ow %}
+ {% with record = ow %}
+ {% include "minis/ow.html" %}
+ {% endwith %}
+ {% endif %}
- {% endif %}
-
- {% with record = ryg %}
- {% include "minis/ryg.html" %}
- {% endwith %}
- {% if tg %}
- {% with record = tg %}
- {% include "minis/tg.html" %}
- {% endwith %}
- {% endif %}
- {% if discord %}
- {% with record = discord %}
- {% include "minis/discord.html" %}
- {% endwith %}
- {% endif %}
- {% if steam %}
- {% with record = steam %}
- {% include "minis/steam.html" %}
- {% endwith %}
- {% endif %}
- {% if dota %}
- {% with record = dota %}
- {% include "minis/dota.html" %}
- {% endwith %}
- {% endif %}
- {# if rl %}
- {% with record = rl %}
- {% include "minis/rl.html" %}
- {% endwith %}
- {% endif #}
- {% if osu %}
- {% with record = osu %}
- {% include "minis/osu.html" %}
- {% endwith %}
- {% endif %}
- {% if lol %}
- {% with record = lol %}
- {% include "minis/lol.html" %}
- {% endwith %}
- {% endif %}
- {% if ow %}
- {% with record = ow %}
- {% include "minis/ow.html" %}
- {% endwith %}
- {% endif %}
{% endblock %}
\ No newline at end of file
diff --git a/webserver.py b/webserver.py
index 0bca9d41..e442e359 100644
--- a/webserver.py
+++ b/webserver.py
@@ -87,8 +87,11 @@ def page_profile(name: str):
tg = db_session.query(db.Telegram).filter_by(royal=user).one_or_none()
discord = db_session.execute(query_discord_music.one_query, {"royal": user.id}).fetchone()
db_session.close()
- converted_bio = Markup(markdown2.markdown(css.bio.replace("<", "<"),
- extras=["spoiler", "tables", "smarty-pants", "fenced-code-blocks"]))
+ if css is not None:
+ converted_bio = Markup(markdown2.markdown(css.bio.replace("<", "<"),
+ extras=["spoiler", "tables", "smarty-pants", "fenced-code-blocks"]))
+ else:
+ converted_bio = ""
return render_template("profile.html", ryg=user, css=css, osu=osu, dota=dota, lol=lol, steam=steam, ow=ow,
tg=tg, discord=discord, config=config, bio=converted_bio)