Show HTML form code for oneOf polls.

This commit is contained in:
default 2023-05-24 12:12:06 +02:00
parent 0d8a040d90
commit 67b21a9ecd

23
html.c
View File

@ -919,6 +919,29 @@ xs_str *html_entry(snac *snac, xs_str *os, const xs_dict *msg, int local,
} }
else { else {
/* poll still active */ /* poll still active */
xs *s1 = xs_fmt("<form method=\"post\" action=\"%s/admin/vote\">\n"
"<input type=\"hidden\" name=\"irt\" value=\"%s\">\n",
snac->actor, id);
while (xs_list_iter(&p, &v)) {
const char *name = xs_dict_get(v, "name");
if (name) {
/* FIXME: process anyOf (checkbox) correctly */
xs *opt = xs_fmt("<input type=\"radio\""
" id=\"%s\" value=\"%s\" name=\"question\"> %s<br>\n",
name, name, name);
s1 = xs_str_cat(s1, opt);
}
}
xs *s2 = xs_fmt("<p><input type=\"submit\" "
"class=\"button\" value=\"%s\">\n</form>\n\n", L("Vote"));
s1 = xs_str_cat(s1, s2);
c = xs_str_cat(c, s1);
} }
} }