25 lines
669 B
Plaintext
25 lines
669 B
Plaintext
package home
|
|
|
|
import "gitea.henriburau.de/haw-lan/cod4watcher/views/layouts"
|
|
import "gitea.henriburau.de/haw-lan/cod4watcher/models"
|
|
import "gitea.henriburau.de/haw-lan/cod4watcher/views/components"
|
|
import "gitea.henriburau.de/haw-lan/cod4watcher/views/capture"
|
|
import "gitea.henriburau.de/haw-lan/cod4watcher/views"
|
|
|
|
templ Index(captures []models.Capture) {
|
|
@layouts.Base() {
|
|
if views.Username(ctx) != "" {
|
|
<a href="/new/capture" class="mb-8 block">
|
|
@components.Button() {
|
|
Create new Capture
|
|
}
|
|
</a>
|
|
}
|
|
<div class="flex gap-3 flex-wrap">
|
|
for _, currentCapture := range captures {
|
|
@capture.CaptureCard(currentCapture)
|
|
}
|
|
</div>
|
|
}
|
|
}
|