15 lines
317 B
HTML
15 lines
317 B
HTML
<%- if not self.hide then -%>
|
|
<div class="gluon-warning"<%=
|
|
attr("id", id) ..
|
|
attr("data-index", self.index) ..
|
|
attr("data-depends", self:deplist(self.deps))
|
|
%>>
|
|
<%- if self.content then -%>
|
|
<%= self.content %>
|
|
<%- else -%>
|
|
<b><%= self.title %></b><br>
|
|
<%= self.description %>
|
|
<%- end -%>
|
|
</div>
|
|
<%- end -%>
|