forked from saurabh/orbit4-5
20 lines
527 B
Plaintext
20 lines
527 B
Plaintext
<% content_for :side_bar do %>
|
|
<%= render :partial => 'admin/members/side_bar' %>
|
|
<% end %>
|
|
|
|
|
|
<div id="list-view">
|
|
<table id="member-list" class="table main-list">
|
|
<thead>
|
|
<tr class="sort-header">
|
|
<th class="span3"><a href="#"><%= t('key') %></a></th>
|
|
<th class="span4"><a href="#"><%= t('title') %></a></th>
|
|
<th><a href="#"><%= t('type') %></a></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<%= render :partial => "attributes",:collection=> @attributes%>
|
|
</tbody>
|
|
</table>
|
|
</div>
|