mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
a61c9c5e98
- Primarily moved and re-organised view files. - Included readme within views to document the convention. - Fixed some issues with page field select list in previous commit. - Tweaked some route names while going through. - Split some views out further. Closes #2805
34 lines
1.5 KiB
PHP
34 lines
1.5 KiB
PHP
<section class="card content-wrap auto-height" id="api_tokens">
|
|
<div class="grid half mb-s">
|
|
<div><h2 class="list-heading">{{ trans('settings.users_api_tokens') }}</h2></div>
|
|
<div class="text-right pt-xs">
|
|
@if(userCan('access-api'))
|
|
<a href="{{ url('/api/docs') }}" class="button outline">{{ trans('settings.users_api_tokens_docs') }}</a>
|
|
<a href="{{ $user->getEditUrl('/create-api-token') }}" class="button outline">{{ trans('settings.users_api_tokens_create') }}</a>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
@if (count($user->apiTokens) > 0)
|
|
<table class="table">
|
|
<tr>
|
|
<th>{{ trans('common.name') }}</th>
|
|
<th>{{ trans('settings.users_api_tokens_expires') }}</th>
|
|
<th></th>
|
|
</tr>
|
|
@foreach($user->apiTokens as $token)
|
|
<tr>
|
|
<td>
|
|
{{ $token->name }} <br>
|
|
<span class="small text-muted italic">{{ $token->token_id }}</span>
|
|
</td>
|
|
<td>{{ $token->expires_at->format('Y-m-d') ?? '' }}</td>
|
|
<td class="text-right">
|
|
<a class="button outline small" href="{{ $user->getEditUrl('/api-tokens/' . $token->id) }}">{{ trans('common.edit') }}</a>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</table>
|
|
@else
|
|
<p class="text-muted italic py-m">{{ trans('settings.users_api_tokens_none') }}</p>
|
|
@endif
|
|
</section> |