Sha256: fcbe8ec46a446a4859f37b7d55ad5a42c6af38596b73afff42cbcc0326e7f5b6
Contents?: true
Size: 697 Bytes
Versions: 3
Compression:
Stored size: 697 Bytes
Contents
<SystemPage> <?r base = "#{@base}/%base%" ?> <h1>#{"%plural%".humanize}</h1> <h2><a href="#{base}/new">New #{"%name%".humanize}</a></h2> <form action="search"> Search #{"%plural%".humanize}: <input type="text" name="q" /> <input type="submit" value="Search" /> </form> <table> <?r for obj in @list ?> <tr> <td width="100%"><a href="#{base}/edit/#{obj.oid}">#{obj.to_s}</a></td> <?r if obj.respond_to?(:update_time) ?> <td nowrap="1">#{obj.update_time.stamp(:db)}</td> <?r end ?> <td><a href="#{base}/edit/#{obj.oid}">edit</a></td> <td><a href="#{base}/delete/#{obj.oid}">del</a></td> </tr> <?r end ?> </table> </SystemPage>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
nitro-0.29.0 | proto/public/scaffold/index.xhtml |
nitro-0.30.0 | proto/public/scaffold/index.xhtml |
nitro-0.31.0 | proto/public/scaffold/index.xhtml |