summaryrefslogblamecommitdiffstats
path: root/templates/users.rs.html
blob: 9b9be30b8d4d289151e5a783bf024fd44c350585 (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, {
<ul>
@for user in users {
  <li>@user.username</li>
}
</ul>
})