mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.dataforms: Add support for field descriptions in <desc>
This commit is contained in:
parent
0a92cbb372
commit
cecc562ac0
1 changed files with 4 additions and 0 deletions
|
@ -38,6 +38,10 @@ function form_t.form(layout, data, formtype)
|
|||
-- Add field tag
|
||||
form:tag("field", { type = field_type, var = field.name, label = field.label });
|
||||
|
||||
if field.desc then
|
||||
form:text_tag("desc", field.desc);
|
||||
end
|
||||
|
||||
local value = (data and data[field.name]) or field.value;
|
||||
|
||||
if value then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue