web-model: add info
This commit is contained in:
parent
f1143acadd
commit
3ff209d603
@ -0,0 +1,7 @@
|
|||||||
|
<div class="gluon-value">
|
||||||
|
<% if self.title then %>
|
||||||
|
<label class="gluon-value-title"><%=self.title%></label>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<span class="gluon-value-field"><%=self.content%></span>
|
||||||
|
</div>
|
@ -188,6 +188,28 @@ function Node:handle()
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local Info = class(Node)
|
||||||
|
M.Info = Info
|
||||||
|
|
||||||
|
function Info:__init__(...)
|
||||||
|
Node.__init__(self, ...)
|
||||||
|
|
||||||
|
self.default = nil
|
||||||
|
self.size = nil
|
||||||
|
self.optional = false
|
||||||
|
|
||||||
|
self.template = "model/info"
|
||||||
|
|
||||||
|
self.error = false
|
||||||
|
end
|
||||||
|
|
||||||
|
function Info:setcontent(content)
|
||||||
|
self.content = content
|
||||||
|
end
|
||||||
|
|
||||||
|
function Info:settitle(title)
|
||||||
|
self.title = title
|
||||||
|
end
|
||||||
|
|
||||||
local File = class(Node)
|
local File = class(Node)
|
||||||
M.File = File
|
M.File = File
|
||||||
|
Loading…
Reference in New Issue
Block a user