53 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
<% content_for :secondary do %>
 | 
						|
	<% #render 'side_bar' %>
 | 
						|
<% end %>
 | 
						|
 | 
						|
<div class="main_list">
 | 
						|
	<%= flash_messages %>
 | 
						|
	<div class="button_bar up">
 | 
						|
		<%  #link_to t('admin.new_user'), new_admin_user_path, :class => 'new' %>
 | 
						|
	</div>
 | 
						|
	<table>
 | 
						|
		<thead>
 | 
						|
			<tr>
 | 
						|
				 <td><%= t('admin.app.title') %></td>
 | 
						|
		      <td><%= t('admin.app.description') %></td>
 | 
						|
		      <td><%= t('admin.app.use_status') %></td>
 | 
						|
		      <td><%= t('admin.app.autdor') %></td>
 | 
						|
		      <td><%= t('admin.app.organization') %></td>
 | 
						|
		      <td><%= t('admin.app.version') %></td>
 | 
						|
					<td class="action"><%= t('admin.action') %></td>
 | 
						|
			</tr>
 | 
						|
		</thead>
 | 
						|
		<tbody>
 | 
						|
			<% @module_apps.each do |module_app| %>
 | 
						|
			<tr class="have" id="attribute_<%= module_app.id %>" class="have <%= "#{module_app.enable_frontend? ? 'disable' : ''}" %>">
 | 
						|
				<td class="name"><%= module_app.title %></td>
 | 
						|
				<td class="name"><%= module_app.intro %></td>
 | 
						|
				<td>
 | 
						|
					<% attribute_type = "module_app"   %>
 | 
						|
					<% attribute = module_app %>
 | 
						|
					<%= link_to t(:enable), admin_module_app_path(attribute, :authenticity_token => form_authenticity_token, :module_app => {:enable_frontend => true}), :remote => true, :method => :put, :id => "disable_#{attribute.id}", :style => "display:#{attribute.enable_frontend ? 'none' : ''}", :class => 'switch' %>
 | 
						|
				  <%= link_to t(:disable), admin_module_app_path(attribute, :authenticity_token => form_authenticity_token, :module_app => {:enable_frontend => false}), :remote => true, :method => :put, :id => "enable_#{attribute.id}", :style => "display:#{attribute.enable_frontend ? '' : 'none'}", :class => 'switch' %>
 | 
						|
				  
 | 
						|
				</td>
 | 
						|
				<td class="email"><%= module_app.author %></td>
 | 
						|
				<td class="email"><%= module_app.organization %></td>
 | 
						|
				<td class="admin"><%= module_app.version %></td>
 | 
						|
				<td class="action">
 | 
						|
					<%= link_to t(:show), admin_module_app_path(module_app), :class => 'show' %>
 | 
						|
					<%= link_to t(:edit), edit_admin_module_app_path(module_app), :class => 'edit' %>
 | 
						|
					<%= link_to t(:delete), admin_module_app_path(module_app), :class => 'delete', :confirm => t('sure?'), :method => :delete %>
 | 
						|
				</td>
 | 
						|
			</tr>
 | 
						|
			<tr>
 | 
						|
				<td colspan="5"></td>
 | 
						|
			</tr>
 | 
						|
			<% end %>
 | 
						|
		</tbody>
 | 
						|
	</table>
 | 
						|
	<div class="button_bar">
 | 
						|
		<%# link_to t('admin.new_user'), new_admin_user_path, :class => 'new' %>
 | 
						|
	</div>	
 | 
						|
</div>
 |