This commit is contained in:
Joe Ardent 2023-12-26 12:26:14 -08:00
parent dd5ae09ab8
commit cced08f653
3 changed files with 2 additions and 3 deletions

View File

@ -18,7 +18,7 @@ use crate::{
//-************************************************************************ //-************************************************************************
const GET_SAVED_WATCHES_QUERY: &str = const GET_SAVED_WATCHES_QUERY: &str =
"select * from watches left join watch_quests on $1 = watch_quests.user and watches.id = watch_quests.watch"; "select * from watches inner join watch_quests on $1 = watch_quests.user and watches.id = watch_quests.watch order by rand()";
const GET_WATCH_QUERY: &str = "select * from watches where id = $1"; const GET_WATCH_QUERY: &str = "select * from watches where id = $1";

View File

@ -16,6 +16,7 @@
{% block header %}{% include "header_with_user.html" %}{% endblock %} {% block header %}{% include "header_with_user.html" %}{% endblock %}
</div> </div>
<div id="content"> <div id="content">
<hr />
{% block content %}{% endblock %} {% block content %}{% endblock %}
</div> </div>
<div id="footer"> <div id="footer">

View File

@ -19,8 +19,6 @@
</div> </div>
{% endmatch %} {% endmatch %}
<hr />
{% else %} <!-- this is for whether or not the template has a user field or not --> {% else %} <!-- this is for whether or not the template has a user field or not -->
{% endif %} {% endif %}