aboutsummaryrefslogblamecommitdiff
path: root/http_handle_index.go
blob: 6a870c2cc610af18e21532cb95123afd74a22948 (plain) (tree)
1
2
3
4
5
6
7
8
9





                  
                                                                                  
                                                                                                              
                       
                                                                                                    

                      
                                 
                                           
 
package main

import (
	"net/http"
)

func handle_index(w http.ResponseWriter, r *http.Request, params map[string]any) {
	groups, err := query_name_desc_list(r.Context(), "SELECT name, COALESCE(description, '') FROM groups")
	if err != nil {
		http.Error(w, "Error querying groups: "+err.Error(), http.StatusInternalServerError)
		return
	}
	params["groups"] = groups
	render_template(w, "index", params)
}