metamaps--metamaps/views/doorkeeper/applications/index.html.erb
2018-03-03 21:25:54 -05:00

29 lines
697 B
Plaintext

<div id="yield">
<div class="centerContent">
<div class="page-header">
<h2>{ t('.title') }</h2>
</div>
<table class="table table-striped">
<thead>
<tr>
<th>{ t('.name') }</th>
<th>{ t('.callback_url') }</th>
<th></th>
</tr>
</thead>
<tbody>
{ @applications.each do |application| }
<tr id="application_{ application.id }">
<td>{ link_to application.name, oauth_application_path(application) }</td>
<td>{ application.redirect_uri }</td>
<td>{ render 'delete_form', application: application }</td>
</tr>
{ end }
</tbody>
</table>
{ link_to t('.new'), new_oauth_application_path, class: 'button link-button' }
</div>
</div>
{ render 'script' }