DEVELOPMENT ENVIRONMENT

~liljamo/felu

ref: c22516aad2f0ffa1decb6e1a6ae1221d84e7ce8f felu/components/adminpartials.templ -rw-r--r-- 269 bytes
c22516aaJonni Liljamo feat: more breaking changes by chaning the initial schema 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>
}