{{ define "content" }}
Total Users
{{.ReportData.TotalUsers}}
Total Polls
{{.ReportData.TotalPolls}}
Total Addresses
{{.ReportData.TotalAddresses}}
Appointments
{{len .ReportData.Appointments}}
| User | Phone | Role | Admin Code | Created | |
|---|---|---|---|---|---|
|
{{.FirstName}} {{.LastName}}
ID: {{.UserID}}
|
{{.Email}} | {{.Phone}} | {{if eq .RoleID 1}}Admin{{else}}Volunteer{{end}} | {{.AdminCode}} | {{.CreatedAt.Format "2006-01-02 15:04"}} |
| Poll | Author | Address | Status | Donated | Created |
|---|---|---|---|---|---|
|
{{.PollTitle}}
{{.PollDescription}}
|
{{.AuthorName}} | {{.Address}} | {{if .IsActive}}Active{{else}}Inactive{{end}} | ${{printf "%.2f" .AmountDonated}} | {{.CreatedAt.Format "2006-01-02 15:04"}} |
| User | Address | Date | Time | Created |
|---|---|---|---|---|
| {{.UserName}} | {{.Address}} | {{.AppointmentDate.Format "2006-01-02"}} | {{.AppointmentTime.Format "15:04"}} | {{.CreatedAt.Format "2006-01-02 15:04"}} |
| Address | Street Details | Coordinates | Visited | Created |
|---|---|---|---|---|
|
{{.Address}}
{{.HouseNumber}}{{.HouseAlpha}}
|
{{.StreetName}} {{.StreetType}}
{{.StreetQuadrant}}
|
{{printf "%.6f" .Latitude}}, {{printf "%.6f" .Longitude}} | {{if .VisitedValidated}}Visited{{else}}Not Visited{{end}} | {{.CreatedAt.Format "2006-01-02 15:04"}} |
| Team ID | Team Lead | Volunteer | Created | Actions |
|---|---|---|---|---|
| {{.TeamID}} | {{.TeamLeadName}} | {{.VolunteerName}} | {{.CreatedAt.Format "2006-01-02 15:04"}} | View Details |
No users found
{{end}}No polls found
{{end}}No appointments found
{{end}}No addresses found
{{end}}