summaryrefslogblamecommitdiffstats
path: root/templates/users.rs.html
blob: ab1ab0f15322abc3296e801cf984dcdf225a909c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12




                      
                          





                         
@use super::base_html;
@use crate::User;

@(users: Vec<User>)

@:base_html(false, None, {
<ul>
@for user in users {
  <li>@user.username</li>
}
</ul>
})