DEVELOPMENT ENVIRONMENT

~liljamo/felu

ref: 712c650d76f4607e50f58721b0a7fc050971cb75 felu/components/adminpartials.templ -rw-r--r-- 269 bytes
712c650dJonni Liljamo feat: first partial, for showing all users in the admin view 11 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package components

import "git.src.quest/~skye/felu-ddns/db"

templ AdminPartialsUsersList(users []db.User) {
	<div class="flex flex-col">
		for _, user := range users {
			<div class="flex border p-2">
				<div>
					{ user.Email }
				</div>
			</div>
		}
	</div>
}