Orbit/vendor/built_in_modules/personal_conference/app/views/panel/personal_conference/back_end/writing_conference_categorys/index.html.erb

30 lines
719 B
Plaintext

<%= flash_messages %>
<%= @types %>
<table id="writing_conference_categorys" class="table main-list">
<thead>
<tr>
<th class="span1-2"><%= t('writing_conference_category.key') %></th>
<% if @types.is_localized?(:title) %>
<% @site_valid_locales.each do |locale| %>
<th class="span1-2"><%= I18nVariable.first(:conditions => {:key => locale})[I18n.locale] %></th>
<% end %>
<% else %>
<th class="span1-2"><%= t('writing_conference_category.title') %></th>
<% end %>
</tr>
</thead>
<tbody>
<%= render :partial => 'writing_conference_category', :collection => @writing_conference_categorys %>
</tbody>
</table>
<div id="form"><%= render :partial => "form" if is_manager? %></div>