Sha256: b01ba0d15a96a3b0eaa91e15333865942909d9d9c8cd47d6c24ab72e7afec655

Contents?: true

Size: 1.03 KB

Versions: 2

Compression:

Stored size: 1.03 KB

Contents

<SystemPage>
  <?r base = "#{@base}/%base%" ?>
  <h1><a href="/"> Home</a> > <a href="#@base">System</a> > <a href="#{base}/list">#{"%plural%".humanize}</a> > Search for '#@query'</h1>
  <p>
  <form action="#{base}/search">
    Search #{"%plural%".humanize}: <input type="text" name="q" />&nbsp;<input type="submit" value="Search" /> 
    <a href="#{base}/advanced_search">Advanced search</a>
  </form>
  </p>
  <?r if @list.nil? ?>
    <p>Search method is not implemented for this object</p>
  <?r else ?>
    <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>
    <div class="pager" if="@pager and @pager.navigation?">
      #{@pager.navigation}
    </div>  
  <?r end ?>
</SystemPage>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
nitro-0.30.0 proto/public/scaffold/search.xhtml
nitro-0.31.0 proto/public/scaffold/search.xhtml