public
Description: A mirror of the mephisto code-base
Homepage: http://mephistoblog.com/
Clone URL: git://github.com/halorgium/mephisto.git
technoweenie (author)
Sun Feb 10 12:31:01 -0800 2008
commit  d8038f72fecdeb573e8f0ced1892bc3f4c6ea489
tree    7d884e93f76b2731c3e7d027b0d5a4573e6a9bb5
parent  b26cb36df2f8d82ef900121ef856a4b677603e9e
mephisto / app / views / admin / plugins / index.rhtml
100644 23 lines (21 sloc) 0.607 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<% content_for :sidebar do %>
<div class="sgroup">
Configurable plugins may include modifiable properties, notes, homepage, author, and version information.
</div>
<% end %>
 
<% if @plugins.any? %>
  <!-- begin plugin list -->
  <table id="plugin-list" cellspacing="0" cellpadding="0" align="center" width="75%">
   <thead>
   <tr>
   <th scope="col">Plugin</th>
   <th scope="col">Configurable?</th>
   <th scope="col">&nbsp;</th>
   </tr>
   </thead>
   <tbody id="plugins">
   <%= render :partial => 'plugin', :collection => @plugins -%>
   </tbody>
  </table>
<!-- /end plugin list -->
<% end %>