|
|
@@ -66,8 +66,8 @@
|
|
|
</small>
|
|
|
</a>
|
|
|
</th>
|
|
|
- <th width="100px">作成日</th>
|
|
|
- <th width="90px">操作</th>
|
|
|
+ <th width="100px">{{ t('user_management.Date created') }}</th>
|
|
|
+ <th width="70px"></th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
@@ -96,16 +96,18 @@
|
|
|
<div class="btn-group admin-user-menu">
|
|
|
|
|
|
<button type="button" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown">
|
|
|
- 編集
|
|
|
- <span class="caret"></span>
|
|
|
+ <i class="icon-settings"></i> <span class="caret"></span>
|
|
|
</button>
|
|
|
<ul class="dropdown-menu" role="menu">
|
|
|
- <li class="dropdown-header">編集メニュー</li>
|
|
|
- <li class="dropdown-button">
|
|
|
- <form action="/admin/users/external-accounts/{{ account.accountId }}/remove" method="post">
|
|
|
- <input type="hidden" name="_csrf" value="{{ csrf() }}">
|
|
|
- <button type="submit" class="btn btn-block btn-danger">削除する</button>
|
|
|
- </form>
|
|
|
+ <li class="dropdown-header">{{ t('user_management.Edit menu') }}</li>
|
|
|
+ <form id="form_remove_{{ account.accountId }}" action="/admin/users/external-accounts/{{ account.accountId }}/remove" method="post">
|
|
|
+ <input type="hidden" name="_csrf" value="{{ csrf() }}">
|
|
|
+ </form>
|
|
|
+ <li>
|
|
|
+ <a href="javascript:form_remove_{{ account.accountId }}.submit()">
|
|
|
+ <i class="icon-fw icon-fire text-danger"></i>
|
|
|
+ 削除する
|
|
|
+ </a>
|
|
|
</li>
|
|
|
</ul>{# end of .dropdown-menu #}
|
|
|
|