15 lines
338 B
Plaintext
15 lines
338 B
Plaintext
package templates
|
|
|
|
import "arbeitszeitmessung/models"
|
|
|
|
templ TimeDashboard(workDays []models.WorkDay){
|
|
@Style()
|
|
<div class="grid grid-cols-6 md:grid-cols-5 items-strech md:mx-[10%] divide-y-1 divide-neutral-400" >
|
|
@inputForm()
|
|
for _, bookingGroup := range workDays {
|
|
@dayComponent(bookingGroup)
|
|
}
|
|
</div>
|
|
@LegendComponent()
|
|
}
|