Sha256: 91da0e0f9ce005bdb55af733c51d680dc666585b1d1f4ca7e054c962dd2bdca0
Contents?: true
Size: 863 Bytes
Versions: 3
Compression:
Stored size: 863 Bytes
Contents
<SystemPage> <?r base = "#{@base}/%base%" ?> <h1><a href="/"> Home</a> > <a href="#@base">System</a> > #{"%plural%".humanize}</h1> <a href="#{base}/new">New %name%</a> <p> <form action="#{base}/search"> Search %plural%: <input type="text" name="q" /> <input type="submit" value="Search" /> </form> </p> <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}" onclick="confirm('Are you sure?')">del</a></td> </tr> <?r end ?> </table> <div class="pager" if="@pager and @pager.navigation?"> #{@pager.navigation} </div> </SystemPage>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
nitro-0.26.0 | proto/public/scaffold/list.xhtml |
nitro-0.27.0 | proto/public/scaffold/list.xhtml |
nitro-0.28.0 | proto/public/scaffold/list.xhtml |