diff options
Diffstat (limited to 'internal/handlers')
| -rw-r--r-- | internal/handlers/elements.go | 18 | 
1 files changed, 18 insertions, 0 deletions
| diff --git a/internal/handlers/elements.go b/internal/handlers/elements.go index 62c632b..965281a 100644 --- a/internal/handlers/elements.go +++ b/internal/handlers/elements.go @@ -22,3 +22,21 @@ func (h *Handlers) ServeHideForm(w http.ResponseWriter, r *http.Request) {  	}  	tmpl.ExecuteTemplate(w, "showformbtn", nil)  } + +func (h *Handlers) ShowRecommended(w http.ResponseWriter, r *http.Request) { +	tmpl, err := template.ParseGlob("components/*.html") +	if err != nil { +		abortWithError(w, err.Error()) +		return +	} +	tmpl.ExecuteTemplate(w, "showformbtn", nil) +} + +func (h *Handlers) HideRecommended(w http.ResponseWriter, r *http.Request) { +	tmpl, err := template.ParseGlob("components/*.html") +	if err != nil { +		abortWithError(w, err.Error()) +		return +	} +	tmpl.ExecuteTemplate(w, "showformbtn", nil) +} | 
