2026-01-29 23:55:41 +00:00
|
|
|
package rmo
|
2026-01-09 19:43:19 +00:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"net/http"
|
|
|
|
|
|
2026-01-30 18:21:27 +00:00
|
|
|
"github.com/Gleipnir-Technology/nidus-sync/html"
|
2026-01-09 19:43:19 +00:00
|
|
|
)
|
|
|
|
|
|
2026-01-22 03:27:32 +00:00
|
|
|
type ContentRegisterNotificationsComplete struct {
|
|
|
|
|
ReportID string
|
|
|
|
|
}
|
|
|
|
|
type District struct {
|
|
|
|
|
LogoURL string
|
|
|
|
|
Name string
|
|
|
|
|
}
|
2026-01-09 19:43:19 +00:00
|
|
|
|
2026-01-17 01:13:27 +00:00
|
|
|
func getRegisterNotificationsComplete(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
report := r.URL.Query().Get("report")
|
2026-01-30 18:21:27 +00:00
|
|
|
html.RenderOrError(
|
2026-01-17 01:13:27 +00:00
|
|
|
w,
|
2026-02-09 22:35:12 +00:00
|
|
|
"rmo/register-notifications-complete.html",
|
2026-01-22 03:27:32 +00:00
|
|
|
ContentRegisterNotificationsComplete{
|
2026-01-17 01:13:27 +00:00
|
|
|
ReportID: report,
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
}
|