Sha256: f97ca44d0d366c00419059f19784c1c439e14aff93e5acb35f6de8eaa46f57c0

Contents?: true

Size: 1.01 KB

Versions: 24

Compression:

Stored size: 1.01 KB

Contents

<%
	usman_items = {
		users: {
			text: "Users",
			icon_class: "fa-user",
			url: usman.users_url,
			has_permission: @current_user.has_read_permission?(User)
		},
		registrations: {
			text: "Registrations",
			icon_class: "fa-mobile",
			url: usman.registrations_url,
			has_permission: @current_user.has_read_permission?(Registration)
		},
		roles: {
			text: "Roles",
			icon_class: "linecons-graduation-cap",
			url: usman.roles_url,
			has_permission: @current_user.has_read_permission?(Role)
		},
		permissions: {
			text: "Permissions",
			icon_class: "fa-lock",
			url: usman.permissions_url,
			has_permission: @current_user.has_read_permission?(Permission)
		},
	}
%>

<% if (usman_items.map{|x, y| y[:has_permission] }).compact.uniq.any? %>

<h3 class="text-gray mt-50 mb-10">
	Manage User <br>
	<small class="text-muted">Manage Users, Role and much more...</small>
</h3>
<hr class="mb-30" style="border-top:1px solid #ddd;">

<%= render partial: "/layouts/dashboard/items", locals: { items: usman_items } %>

<% end %>

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
usman-0.3.33 app/views/usman/dashboard/_index.html.erb
usman-0.3.32 app/views/usman/dashboard/_index.html.erb
usman-0.3.31 app/views/usman/dashboard/_index.html.erb
usman-0.3.30 app/views/usman/dashboard/_index.html.erb
usman-0.3.29 app/views/usman/dashboard/_index.html.erb
usman-0.3.28 app/views/usman/dashboard/_index.html.erb
usman-0.3.27 app/views/usman/dashboard/_index.html.erb
usman-0.3.26 app/views/usman/dashboard/_index.html.erb
usman-0.3.25 app/views/usman/dashboard/_index.html.erb
usman-0.3.24 app/views/usman/dashboard/_index.html.erb
usman-0.3.23 app/views/usman/dashboard/_index.html.erb
usman-0.3.22 app/views/usman/dashboard/_index.html.erb
usman-0.3.21 app/views/usman/dashboard/_index.html.erb
usman-0.3.20 app/views/usman/dashboard/_index.html.erb
usman-0.3.19 app/views/usman/dashboard/_index.html.erb
usman-0.3.18 app/views/usman/dashboard/_index.html.erb
usman-0.3.17 app/views/usman/dashboard/_index.html.erb
usman-0.3.16 app/views/usman/dashboard/_index.html.erb
usman-0.3.15 app/views/usman/dashboard/_index.html.erb
usman-0.3.14 app/views/usman/dashboard/_index.html.erb