root/luci2/cbi2/widgets/tsection.c @ 5709

Revision 5709, 270 bytes (checked in by blogic, 3 years ago)

cleanup widgets

Line 
1#include "../cbi.h"
2
3struct cbi_widget_property tsection_props[] = {
4    { "id", PROP_REQUIRED },
5    { "name", PROP_REQUIRED },
6};
7
8struct cbi_widget tsection = {
9    .caps = CAP_SECTION | CAP_TEMPLATE,
10    .parent_caps = CAP_PACKAGE,
11    WPROPS(tsection_props),
12};
13
14WIDGET(tsection)
Note: See TracBrowser for help on using the browser.