1 <form action="{{ url('/watching/update') }}" method="POST">
2 {{ method_field('PUT') }}
4 <input type="hidden" name="type" value="{{ get_class($entity) }}">
5 <input type="hidden" name="id" value="{{ $entity->id }}">
7 <ul refs="dropdown@menu" class="dropdown-menu xl-limited anchor-left pb-none">
8 @foreach(\BookStack\Activity\WatchLevels::all() as $option => $value)
10 <button name="level" value="{{ $option }}" class="icon-item">
11 @if($watchLevel === $option)
12 <span class="text-pos pt-m"
13 title="{{ trans('common.status_active') }}">@icon('check-circle')</span>
15 <span title="{{ trans('common.status_inactive') }}"></span>
17 <div class="break-text">
18 <div class="mb-xxs"><strong>{{ trans('entities.watch_title_' . $option) }}</strong></div>
19 <div class="text-muted text-small">
20 {{ trans('entities.watch_desc_' . $option) }}
30 <a href="{{ url('/preferences/notifications') }}"
32 class="text-item text-muted text-small break-text">{{ trans('entities.watch_change_default') }}</a>