Sha256: 32e8014c52c9634cc73c6c2681b2ea8e95f51b1b5bd564e77edec61c7b82bb05

Contents?: true

Size: 661 Bytes

Versions: 4

Compression:

Stored size: 661 Bytes

Contents

<% content_for :breadcrumb do %>
<ol class="breadcrumb">
  <li class="active"><%= _('Users') %></li>
</ol>
<% end %>

<ul class="list-unstyled index">
<% @users.each do |user| %>
  <li>
    <%= user.email %>
  <% if user.organization_id %>
    <span class="muted"><%= user.organization.name %></span>
  <% end %>
    <span class="actions">
      <%= link_to [:edit, user] do %>
        <span class="glyphicon glyphicon-pencil"></span> <%= _('Edit') %>
      <% end %>
    </span>
  </li>
<% end %>
</ul>

<p>
  <%= link_to(new_user_path, class: 'btn btn-primary') do %>
    <span class="glyphicon glyphicon-plus"></span> <%= _('Add a user') %>
  <% end %>
</p>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
citizen_budget_model-0.0.4 app/views/citizen_budget_model/users/index.html.erb
citizen_budget_model-0.0.3 app/views/citizen_budget_model/users/index.html.erb
citizen_budget_model-0.0.2 app/views/citizen_budget_model/users/index.html.erb
citizen_budget_model-0.0.1 app/views/citizen_budget_model/users/index.html.erb