]> BookStack Code Mirror - bookstack/blobdiff - resources/views/settings/webhooks/index.blade.php
Added copy considerations
[bookstack] / resources / views / settings / webhooks / index.blade.php
index 999a458ec15057251840ddbcc5fbaacb33d88bb6..d6423b6fb1423dcc6408555142310c0f320fdfdf 100644 (file)
@@ -25,6 +25,7 @@
                     <tr>
                         <th>{{ trans('common.name') }}</th>
                         <th>{{ trans('settings.webhook_events_table_header') }}</th>
+                        <th>{{ trans('common.status') }}</th>
                     </tr>
                     @foreach($webhooks as $webhook)
                         <tr>
                                     {{ $webhook->trackedEvents->count() }}
                                 @endif
                             </td>
+                            <td>
+                                {{ trans('common.status_' . ($webhook->active ? 'active' : 'inactive')) }}
+                            </td>
                         </tr>
                     @endforeach
                 </table>
             @else
-                <p class="text-muted empty-text">
-                    {{ trans('common.no_items') }}
+                <p class="text-muted empty-text px-none">
+                    {{ trans('settings.webhooks_none_created') }}
                 </p>
             @endif