Sha256: 89f0c5ac7bf9f5b899720c201226a7814f0943182653bc8cfdf9dbf9222c3511

Contents?: true

Size: 1.03 KB

Versions: 3

Compression:

Stored size: 1.03 KB

Contents

<% content_for(:page_css) do -%>
    table.index h4 {
      font-size: 110%;
      margin-top: .5em;
      margin-bottom: .25em;
    }
    table.index p {
      margin-top: .25em;
      margin-bottom: .5em;
    }
<% end -%>

<h1>Extensions</h1>

  <table id="extensions" class="index" cellpadding="0" cellspacing="0" border="0">
    <thead>
      <tr>
        <th class="extension">Extension</th>
        <th class="website">Website</th>
        <th class="version">Version</th>
      </tr>
    </thead>
    <tbody>
  <% for extension in @extensions -%>
      <tr class="node level-1">
        <td class="extension">
          <h4><%=h extension.extension_name %></h4>
          <p><%=h extension.description %></p>
        </td>
        <td class="website"><%= link_to "Website", extension.url, :target => "_blank" unless extension.url.blank? %></td>
        <td class="version"><%=h extension.version %></td>
      </tr>
  <% end -%>
    </tbody>
  </table>
<script type="text/javascript">
// <![CDATA[
  new RuledTable('extensions');
// ]]>
</script>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
radiant-0.6.5.1 app/views/admin/extension/index.html.erb
radiant-0.6.5 app/views/admin/extension/index.html.erb
radiant-0.6.6 app/views/admin/extension/index.html.erb