ftp-manager/app/views/accounts/index.html.erb
2016-10-14 22:22:41 -05:00

46 lines
1.1 KiB
Plaintext

<p id="notice"><%= notice %></p>
<h1>FTP Accounts</h1>
<table>
<thead>
<tr>
<th>Home Folder</th>
<th>Username</th>
<th>Password</th>
<th>Contact eMail</th>
<th colspan="3"></th>
</tr>
</thead>
<tbody>
<% @accounts.each do |account| %>
<tr>
<td>
<a href="<%= "#{AppConfig.wwwroot}#{account.home_folder}"%>" target="_blank" rel="noopener">
<%= account.home_folder %>
</s>
</td>
<td><%= account.username %></td>
<td class="passwd" data-id="passwd">
<%= link_to reveal_password_path(account.id), remote: true do %>
<i class="fa fa-lock fa-lg"></i>
<% end %>
<span>********</span>
</td>
<td>
<a href="mailto: <%= account.contact_email %>">
<%= account.contact_email %>
</a>
</td>
<td><%= link_to 'Show', account %></td>
<td><%= link_to 'Edit', edit_account_path(account) %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'New Account', new_account_path %>