mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-06 01:45:22 +00:00
rename admin to settings.
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
{{ Breadcrumbs.render }}
|
||||
{% endblock %}
|
||||
{% block content %}
|
||||
<form action="{{ route('admin.configuration.index.post') }}" method="post" id="store" class="form-horizontal">
|
||||
<form action="{{ route('settings.configuration.index.post') }}" method="post" id="store" class="form-horizontal">
|
||||
|
||||
<div class="row">
|
||||
|
||||
|
||||
@@ -13,11 +13,11 @@
|
||||
<div class="box-body">
|
||||
<ul>
|
||||
<li>
|
||||
<a href="{{ route('admin.configuration.index') }}">{{ 'firefly_instance_configuration'|_ }}</a>
|
||||
<a href="{{ route('settings.configuration.index') }}">{{ 'firefly_instance_configuration'|_ }}</a>
|
||||
</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.notification.index') }}">{{ 'settings_notifications'|_ }}</a></li>
|
||||
<li><a href="{{ route('settings.links.index') }}">{{ 'journal_link_configuration'|_ }}</a></li>
|
||||
<li><a href="{{ route('settings.update-check') }}">{{ 'update_check_title'|_ }}</a></li>
|
||||
<li><a href="{{ route('settings.notification.index') }}">{{ 'settings_notifications'|_ }}</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
@@ -27,7 +27,7 @@
|
||||
</div>
|
||||
<div class="box-body">
|
||||
<ul>
|
||||
<li><a href="{{ route('admin.users') }}">{{ 'list_all_users'|_ }}</a></li>
|
||||
<li><a href="{{ route('settings.users') }}">{{ 'list_all_users'|_ }}</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
{% block content %}
|
||||
|
||||
<form method="POST" action="{{ route('admin.links.store') }}" accept-charset="UTF-8" class="form-horizontal">
|
||||
<form method="POST" action="{{ route('settings.links.store') }}" accept-charset="UTF-8" class="form-horizontal">
|
||||
<input name="_token" type="hidden" value="{{ csrf_token() }}">
|
||||
<div class="row">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
{% block content %}
|
||||
|
||||
<form method="POST" action="{{ route('admin.links.destroy',linkType.id) }}" accept-charset="UTF-8"
|
||||
<form method="POST" action="{{ route('settings.links.destroy',linkType.id) }}" accept-charset="UTF-8"
|
||||
class="form-horizontal" id="destroy">
|
||||
<input name="_token" type="hidden" value="{{ csrf_token() }}">
|
||||
<div class="row">
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
{% block content %}
|
||||
|
||||
<form method="post" action="{{ route('admin.links.update', linkType.id) }}" class="form-horizontal"
|
||||
<form method="post" action="{{ route('settings.links.update', linkType.id) }}" class="form-horizontal"
|
||||
accept-charset="UTF-8"
|
||||
enctype="multipart/form-data">
|
||||
<input type="hidden" name="id" value="{{ linkType.id }}"/>
|
||||
|
||||
@@ -27,9 +27,9 @@
|
||||
<td>
|
||||
{% if linkType.editable %}
|
||||
<div class="btn-group btn-group-xs">
|
||||
<a class="btn btn-default btn-xs" href="{{ route('admin.links.edit',linkType.id) }}"><span
|
||||
<a class="btn btn-default btn-xs" href="{{ route('settings.links.edit',linkType.id) }}"><span
|
||||
class="fa fa-fw fa-pencil"></span></a>
|
||||
<a class="btn btn-danger btn-xs" href="{{ route('admin.links.delete',linkType.id) }}"><span
|
||||
<a class="btn btn-danger btn-xs" href="{{ route('settings.links.delete',linkType.id) }}"><span
|
||||
class="fa fa-fw fa-trash-o"></span></a>
|
||||
</div>
|
||||
{% endif %}
|
||||
@@ -44,7 +44,7 @@
|
||||
{{ journalLinkTranslation('outward', linkType.outward) }}
|
||||
</td>
|
||||
<td data-value="{{ linkType.journalCount }}">
|
||||
<a href="{{ route('admin.links.show', [linkType.id]) }}">{{ linkType.journalCount }}</a>
|
||||
<a href="{{ route('settings.links.show', [linkType.id]) }}">{{ linkType.journalCount }}</a>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
@@ -52,7 +52,7 @@
|
||||
</table>
|
||||
</div>
|
||||
<div class="box-footer">
|
||||
<a href="{{ route('admin.links.create') }}" class="btn btn-success">{{ 'create_new_link_type'|_ }}</a>
|
||||
<a href="{{ route('settings.links.create') }}" class="btn btn-success">{{ 'create_new_link_type'|_ }}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
{% block content %}
|
||||
<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">
|
||||
<form action="{{ route('settings.notification.post') }}" method="post">
|
||||
<input type="hidden" name="_token" value="{{ csrf_token() }}">
|
||||
<div class="box box-default">
|
||||
<div class="box-header with-border">
|
||||
@@ -43,7 +43,7 @@
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<form action="{{ route('admin.notification.test') }}" method="post">
|
||||
<form action="{{ route('settings.notification.test') }}" method="post">
|
||||
<div class="col-lg-6 col-md-12 col-sm-12 col-xs-12">
|
||||
<input type="hidden" name="_token" value="{{ csrf_token() }}">
|
||||
<div class="box box-default">
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
{{ Breadcrumbs.render }}
|
||||
{% endblock %}
|
||||
{% block content %}
|
||||
<form action="{{ route('admin.update-check.post') }}" method="post" id="store" class="form-horizontal">
|
||||
<form action="{{ route('settings.update-check.post') }}" method="post" id="store" class="form-horizontal">
|
||||
|
||||
<div class="row">
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
{{ 'admin_update_check_now_explain'|_ }}
|
||||
</p>
|
||||
<p>
|
||||
<a href="{{ route('admin.update-check.manual') }}" class="btn btn-info">{{ 'check_for_updates_button'|_ }}</a>
|
||||
<a href="{{ route('settings.update-check.manual') }}" class="btn btn-info">{{ 'check_for_updates_button'|_ }}</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
@@ -69,7 +69,7 @@
|
||||
{% endblock %}
|
||||
{% block scripts %}
|
||||
<script type="text/javascript" nonce="{{ JS_NONCE }}">
|
||||
var updateCheckUrl = '{{ route('admin.update-check.manual') }}';
|
||||
var updateCheckUrl = '{{ route('settings.update-check.manual') }}';
|
||||
</script>
|
||||
<script type="text/javascript" src="v1/js/ff/admin/update/index.js?v={{ FF_VERSION }}" nonce="{{ JS_NONCE }}"></script>
|
||||
{% endblock %}
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
{% block content %}
|
||||
|
||||
<form method="POST" action="{{ route('admin.users.destroy',user.id) }}" accept-charset="UTF-8" class="form-horizontal" id="destroy">
|
||||
<form method="POST" action="{{ route('settings.users.destroy',user.id) }}" accept-charset="UTF-8" class="form-horizontal" id="destroy">
|
||||
<input name="_token" type="hidden" value="{{ csrf_token() }}">
|
||||
|
||||
<div class="row">
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
{% endblock %}
|
||||
{% block content %}
|
||||
|
||||
<form method="post" action="{{ route('admin.users.update',user.id) }}" class="form-horizontal"
|
||||
<form method="post" action="{{ route('settings.users.update',user.id) }}" class="form-horizontal"
|
||||
accept-charset="UTF-8"
|
||||
enctype="multipart/form-data">
|
||||
<input type="hidden" name="_token" value="{{ csrf_token() }}"/>
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
{% if allowInvites %}
|
||||
<div class="row">
|
||||
<div class="col-lg-6">
|
||||
<form action="{{ route('admin.users.invite') }}" method="post">
|
||||
<form action="{{ route('settings.users.invite') }}" method="post">
|
||||
<input type="hidden" name="_token" value="{{ csrf_token() }}"/>
|
||||
<div class="box box-primary">
|
||||
<div class="box-header with-border">
|
||||
@@ -54,15 +54,15 @@
|
||||
<tr>
|
||||
<td class="hidden-xs" data-value="{{ user.id }}">
|
||||
<div class="btn-group btn-group-xs">
|
||||
<a class="btn btn-default" href="{{ route('admin.users.edit',user.id) }}"><span
|
||||
<a class="btn btn-default" href="{{ route('settings.users.edit',user.id) }}"><span
|
||||
class="fa fa-pencil"></span></a>
|
||||
<a class="btn btn-danger" href="{{ route('admin.users.delete',user.id) }}"><span
|
||||
<a class="btn btn-danger" href="{{ route('settings.users.delete',user.id) }}"><span
|
||||
class="fa fa-trash"></span></a>
|
||||
</div>
|
||||
</td>
|
||||
<td class="hidden-xs" data-value="{{ user.id }}">#{{ user.id }}</td>
|
||||
<td data-value="{{ user.email }}">
|
||||
<a href="{{ route('admin.users.show',user.id) }}">{{ user.email }}</a></td>
|
||||
<a href="{{ route('settings.users.show',user.id) }}">{{ user.email }}</a></td>
|
||||
<td class="hidden-xs" data-value="{{ user.created_at.format('Y-m-d H-i-s') }}">
|
||||
{{ user.created_at.isoFormat(monthAndDayFormat) }}
|
||||
{{ user.created_at.format('H:i') }}
|
||||
@@ -137,7 +137,7 @@
|
||||
<tr>
|
||||
<td class="hidden-xs" data-value="{{ user.id }}">
|
||||
<div class="btn-group btn-group-xs">
|
||||
<a class="btn btn-danger delete-invite" href="{{ route('admin.users.delete-invite', invitee.id) }}"><span
|
||||
<a class="btn btn-danger delete-invite" href="{{ route('settings.users.delete-invite', invitee.id) }}"><span
|
||||
class="fa fa-trash"></span></a>
|
||||
</div>
|
||||
</td>
|
||||
|
||||
Reference in New Issue
Block a user