Sha256: 7f2cb76592e95ab3bd803785f7373006b1ae1396345ec9d5a3bd08a298407f9a
Contents?: true
Size: 1.17 KB
Versions: 2
Compression:
Stored size: 1.17 KB
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%".humanize}</a> <p> <form action="#{base}/search"> Search #{"%plural%".humanize}: <input type="text" name="q" /> <input type="submit" value="Search" /> <a href="#{base}/advanced_search">Advanced search</a> </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 ?> <?r if Glue.const_defined?(:Orderable) and @klass.include?(Glue::Orderable) ?> <td><a href="#">Top</a></td> <td><a href="#">Up</a></td> <td><a href="#">Down</a></td> <td><a href="#">Bottom</a></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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
nitro-0.31.0 | proto/public/scaffold/list.xhtml |
nitro-0.30.0 | proto/public/scaffold/list.xhtml |