fix html
This commit is contained in:
parent
dd5ae09ab8
commit
cced08f653
3 changed files with 2 additions and 3 deletions
|
@ -18,7 +18,7 @@ use crate::{
|
|||
//-************************************************************************
|
||||
|
||||
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";
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
{% block header %}{% include "header_with_user.html" %}{% endblock %}
|
||||
</div>
|
||||
<div id="content">
|
||||
<hr />
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
<div id="footer">
|
||||
|
|
|
@ -19,8 +19,6 @@
|
|||
</div>
|
||||
{% endmatch %}
|
||||
|
||||
<hr />
|
||||
|
||||
{% else %} <!-- this is for whether or not the template has a user field or not -->
|
||||
|
||||
{% endif %}
|
||||
|
|
Loading…
Reference in a new issue