web-model: add info

This commit is contained in:
Maciej Krüger 2022-04-15 04:50:03 +02:00 committed by Alexander List
parent f1143acadd
commit 3ff209d603
2 changed files with 29 additions and 0 deletions

View File

@ -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>

View File

@ -188,6 +188,28 @@ function Node:handle()
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)
M.File = File