mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 02:36:28 +00:00 
			
		
		
		
	Expand notifications settings.
This commit is contained in:
		| @@ -17,7 +17,7 @@ | ||||
|                         </li> | ||||
|                         <li><a href="{{ route('admin.links.index') }}">{{ 'journal_link_configuration'|_ }}</a></li> | ||||
|                         <li><a href="{{ route('admin.update-check') }}">{{ 'update_check_title'|_ }}</a></li> | ||||
|                         <li><a href="{{ route('admin.notifications') }}">{{ 'settings_notifications'|_ }}</a></li> | ||||
|                         <li><a href="{{ route('admin.notification.index') }}">{{ 'settings_notifications'|_ }}</a></li> | ||||
|                     </ul> | ||||
|                 </div> | ||||
|             </div> | ||||
| @@ -31,32 +31,6 @@ | ||||
|                     </ul> | ||||
|                 </div> | ||||
|             </div> | ||||
|             <form action="{{ route('admin.notifications') }}" method="post"> | ||||
|                 <input type="hidden" name="_token" value="{{ csrf_token() }}"> | ||||
|                 <div class="box box-default"> | ||||
|                     <div class="box-header with-border"> | ||||
|                         <h3 class="box-title">{{ 'owner_notifications'|_ }}</h3> | ||||
|                     </div> | ||||
|                     <div class="box-body"> | ||||
|                         <p> | ||||
|                             {{ 'owner_notifications_expl'|_ }} | ||||
|                         </p> | ||||
|                         {% for notification, value in notifications %} | ||||
|                         <div class="checkbox"> | ||||
|                             <label> | ||||
|                                 <input value="1" {% if true == value %}checked{% endif %} type="checkbox" name="notification_{{ notification }}"> {{ trans('firefly.owner_notification_check_'~notification) }} | ||||
|                             </label> | ||||
|                         </div> | ||||
|                         {% endfor %} | ||||
|                         {# {{ ExpandedForm.text('slackUrl', slackUrl, {'label' : 'slack_url_label'|_}) }}  #} | ||||
|                     </div> | ||||
|                     <div class="box-footer"> | ||||
|                         <button type="submit" class="btn btn-success"> | ||||
|                                 <span class="fa fa-check-circle"></span> {{ ('save_notification_settings')|_ }} | ||||
|                         </button> | ||||
|                     </div> | ||||
|                 </div> | ||||
|             </form> | ||||
|         </div> | ||||
|         <div class="col-lg-6 col-md-12 col-sm-12 col-xs-12"> | ||||
|             <div class="box box-default"> | ||||
|   | ||||
| @@ -4,7 +4,7 @@ | ||||
|     {{ Breadcrumbs.render }} | ||||
| {% endblock %} | ||||
| {% block content %} | ||||
|     <div class="row" xmlns="http://www.w3.org/1999/html"> | ||||
|     <div class="row"> | ||||
|         <div class="col-lg-6 col-md-12 col-sm-12 col-xs-12"> | ||||
|             <form action="{{ route('admin.notification.post') }}" method="post"> | ||||
|                 <input type="hidden" name="_token" value="{{ csrf_token() }}"> | ||||
| @@ -13,6 +13,17 @@ | ||||
|                         <h3 class="box-title">{{ 'notification_settings'|_ }}</h3> | ||||
|                     </div> | ||||
|                     <div class="box-body"> | ||||
|                         <p> | ||||
|                             {{ trans('firefly.owner_notifications_expl') }} | ||||
|                         </p> | ||||
|                         {% for notification, value in notifications %} | ||||
|                             <div class="checkbox"> | ||||
|                                 <label> | ||||
|                                     <input value="1" {% if true == value %}checked{% endif %} type="checkbox" name="notification_{{ notification }}"> {{ trans('firefly.owner_notification_check_'~notification) }} | ||||
|                                 </label> | ||||
|                             </div> | ||||
|                         {% endfor %} | ||||
|                         <p style="margin-top:2em;">{{ 'channel_settings'|_ }}</p> | ||||
|                         {{ ExpandedForm.text('slackUrl', slackUrl, {'label' : 'slack_url_label'|_}) }} | ||||
|                         {{ ExpandedForm.text('discordUrl', discordUrl, {'label' : 'discord_url_label'|_}) }} | ||||
|                     </div> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user