public
Description: A mirror of the mephisto code-base
Homepage: http://mephistoblog.com/
Clone URL: git://github.com/halorgium/mephisto.git
Search Repo:
commit  1cd5005248cd280b894971da122345a1616d280f
tree    65a98b098d64489c736a18ee1df971fc13d8b346
parent  d8038f72fecdeb573e8f0ced1892bc3f4c6ea489
mephisto / app / views / admin / plugins / index.rhtml
100644 31 lines (29 sloc) 0.777 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<% if @plugins.size > 0 -%>
  <!-- begin plugin list -->
  <table id="article-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 %>
 
<% content_for :action_nav do %>
<!-- begin action nav -->
<div id="page-nav">
  <ul id="act-nav" class="clear">
  </ul>
</div>
<!-- /end action nav -->
<% end -%>
 
<% content_for :sidebar do %>
<div class="sgroup">
Configurable plugins may include modifiable properties, notes, homepage, author, and version information.
</div>
<% end %>