Sha256: 9925ed82dd29dbd2507a0372683714913c95ca9cdeed8539504d23eb0759fe76

Contents?: true

Size: 496 Bytes

Versions: 1

Compression:

Stored size: 496 Bytes

Contents

<ul class="nav nav-tabs" id="admin-menu-tab">
	
	<% if controller.action_name.to_s == 'show' %>
		<%= content_tag :li, link_to(t('view'), Setting.first), class: 'active' %>
	<% else %>
			<%= content_tag :li, link_to(t('view'), Setting.first) %>
	<% end -%>
	
	<% if controller.action_name.to_s == 'edit' %>
		<%= content_tag :li, link_to(t('edit'), Setting.first), class: 'active' %>
	<% else %>
			<%= content_tag :li, link_to(t('edit'), edit_setting_path(Setting.first)) %>
	<% end -%>
	
</ul>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tkh_admin_panel-0.3.1 app/views/settings/_tab_admin_menu.html.erb