zeninstall/src/autogen/app/views/accounts/index.html.erb

24 lines
583 B
Plaintext

<p style="color: green"><%= notice %></p>
<h1 class="title">Accounts</h1>
<%= button_to "New Account", new_account_path, method: :get, class: "button is-small is-primary" %></tr>
<div class="box">
<table id="scripts" class="table">
<thead>
<tr>
<th colspan="1">Login</th>
<th colspan="1"></th>
</tr>
</thead>
<tbody>
<% @accounts.each do |account| %>
<%= render :partial => 'account_raw', :locals => { :account => account} %>
<% end %>
</tbody>
</table>
</div>