diff options
author | cel 🌸 <cel@blos.sm> | 2023-12-11 13:57:51 +0000 |
---|---|---|
committer | cel 🌸 <cel@blos.sm> | 2023-12-11 13:57:51 +0000 |
commit | 5dc4774ed3380762b4d7aadc86193af6073c456a (patch) | |
tree | cc8af98d94a0566ec19e4ca2f3cfd3800a7c5423 /templates/users.rs.html | |
parent | 159b239aa2964f6c07438638b967746354376b2e (diff) | |
download | pinussy-5dc4774ed3380762b4d7aadc86193af6073c456a.tar.gz pinussy-5dc4774ed3380762b4d7aadc86193af6073c456a.tar.bz2 pinussy-5dc4774ed3380762b4d7aadc86193af6073c456a.zip |
implement log-out
Diffstat (limited to 'templates/users.rs.html')
-rw-r--r-- | templates/users.rs.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/users.rs.html b/templates/users.rs.html index ab1ab0f..c5b98f9 100644 --- a/templates/users.rs.html +++ b/templates/users.rs.html @@ -3,10 +3,10 @@ @(users: Vec<User>) -@:base_html(false, None, { +@:base_html(None, None, { <ul> @for user in users { <li>@user.username</li> } </ul> -})
\ No newline at end of file +}) |