{{ define "content" }} {{.Title}}
Reports & Analytics
{{if .SearchType}} {{end}}

Total Users

{{.ReportData.TotalUsers}}

Total Polls

{{.ReportData.TotalPolls}}

Total Addresses

{{.ReportData.TotalAddresses}}

Appointments

{{len .ReportData.Appointments}}

Search & Filter Data

{{if eq .SearchType "users"}}

Users Results ({{.ReportData.TotalUsers}} total)

{{range .ReportData.Users}} {{end}}
User Email 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"}}
{{else if eq .SearchType "polls"}}

Polls Results ({{.ReportData.TotalPolls}} total)

{{range .ReportData.Polls}} {{end}}
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"}}
{{else if eq .SearchType "appointments"}}

Appointments Results ({{len .ReportData.Appointments}} total)

{{range .ReportData.Appointments}} {{end}}
User Address Date Time Created
{{.UserName}} {{.Address}} {{.AppointmentDate.Format "2006-01-02"}} {{.AppointmentTime.Format "15:04"}} {{.CreatedAt.Format "2006-01-02 15:04"}}
{{else if eq .SearchType "addresses"}}

Addresses Results ({{.ReportData.TotalAddresses}} total)

{{range .ReportData.Addresses}} {{end}}
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"}}
{{else if eq .SearchType "teams"}}

Teams Results ({{len .ReportData.Teams}} total)

{{range .ReportData.Teams}} {{end}}
Team ID Team Lead Volunteer Created Actions
{{.TeamID}} {{.TeamLeadName}} {{.VolunteerName}} {{.CreatedAt.Format "2006-01-02 15:04"}} View Details
{{else}}

Data Overview

Recent Users

View All
{{if .ReportData.Users}}
{{range .ReportData.Users}}
{{.FirstName}} {{.LastName}}
{{.Email}}
{{.CreatedAt.Format "Jan 02, 2006"}}
{{if eq .RoleID 1}}Admin{{else}}Volunteer{{end}}
{{end}}
{{else}}

No users found

{{end}}

Recent Polls

View All
{{if .ReportData.Polls}}
{{range .ReportData.Polls}}
{{.PollTitle}}
by {{.AuthorName}}
{{.CreatedAt.Format "Jan 02, 2006"}}
{{if .IsActive}}Active{{else}}Inactive{{end}}
{{end}}
{{else}}

No polls found

{{end}}

Recent Appointments

View All
{{if .ReportData.Appointments}}
{{range .ReportData.Appointments}}
{{.UserName}}
{{.Address}}
{{.AppointmentDate.Format "Jan 02, 2006"}}
{{.AppointmentTime.Format "15:04"}}
{{end}}
{{else}}

No appointments found

{{end}}

Address Summary

View All
{{if .ReportData.Addresses}}
{{range .ReportData.Addresses}}
{{.Address}}
{{.StreetName}} {{.StreetType}}, {{.StreetQuadrant}}
{{if .VisitedValidated}}Visited{{else}}Not Visited{{end}}
{{end}}
{{else}}

No addresses found

{{end}}

Analytics Overview

{{end}} {{if and .SearchType (or (gt .ReportData.TotalUsers 0) (gt .ReportData.TotalPolls 0) (gt .ReportData.TotalAddresses 0))}}
Page {{.CurrentPage}} | {{.Limit}} per page
{{if gt .CurrentPage 1}} {{end}} {{.CurrentPage}}
{{end}}
{{ end }}