All renamed views

This commit is contained in:
Sander Dorigo
2026-06-25 22:41:06 +02:00
parent 7304d1e118
commit 2be02d1fb9
180 changed files with 15 additions and 88 deletions
@@ -33,7 +33,7 @@
<th>{{ trans('list.date') }}</th>
<th>{{ trans('list.source_account') }}</th>
<th>{{ trans('list.destination_account') }}</th>
@if($showCategory)
@if(($showCategory ?? false))
<th class="d-xs-none">{{ trans('list.category') }}</th>
@endif
@if($showBudget ?? false)
@@ -77,7 +77,7 @@
@endforeach
</td>
<!-- column to span accounts + extra fields -->
@if($showCategory ?? false || $showBudget ?? false)
@if(($showCategory ?? false) || $showBudget ?? false)
<td colspan="5" class="top-light-border">&nbsp;</td>
@else
<td colspan="4" class="top-light-border">&nbsp;b</td>
@@ -233,7 +233,7 @@
</tr>
<tr>
@if($showCategory || $showBudget ?? false)
@if(($showCategory ?? false) || $showBudget ?? false)
<td colspan="9" class="no-margin-pagination">{{ $groups->links('pagination.bootstrap-4') }}</td>
@else
<td colspan="8" class="no-margin-pagination">{{ $groups->links('pagination.bootstrap-4') }}</td>
-52
View File
@@ -1,52 +0,0 @@
<!DOCTYPE html>
<html lang="{{ trans('config.html_language') }}">
<head>
<title>{{ trans('firefly.debug_page') }}</title>
</head>
<style nonce="{{ $JS_NONCE }}">
p.default-text {font-family:Arial, Arial, Helvetica, sans-serif;font-size:12pt;width:600px;}
p.warn-text {font-family:Arial, Arial, Helvetica, sans-serif;font-size:12pt;width:600px;color:#a00;}
textarea {font-family:Menlo, Monaco, Consolas, monospace;font-size:8pt;}
</style>
<body>
<p class="default-text">
{{ trans('firefly.debug_submit_instructions')|raw }}
</p>
<p class="default-text">
<strong>{{ trans('firefly.debug_pretty_table') }}</strong>
</p>
<label for="debug_info"></label>
<textarea rows="30" cols="100" name="debug_info" id="debug_info">
Debug information generated at {{ now }} for Firefly III version **{% if not FF_IS_DEVELOP %}v@endif{{ FF_VERSION }}**.
{{ table|escape('html') }}
</textarea>
<script type="text/javascript" nonce="{{ $JS_NONCE }}">
var textArea = document.getElementById('debug_info');
var text = textArea.value;
var timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone;
text = text.replace('[BrowserTZ]', timeZone);
textArea.value = text;
</script>
<p class=default-text">
<a href="{{ route('index') }}">{{ trans('firefly.back_to_index') }}</a>
</p>
<p class="warn-text">
{{ trans('firefly.debug_additional_data')|raw }}
</p>
<textarea rows="30" cols="100" name="log_info">
```
{{ logContent }}
```
</textarea>
<p class=default-text">
<a href="{{ route('index') }}">{{ trans('firefly.back_to_index') }}</a>
</p>
</body>
</html>
@@ -31,7 +31,7 @@
<div class="card-body">
{!! ExpandedForm::date('target_date') }}
{!! ExpandedForm::textarea('notes', null, {helpText: trans('firefly.field_supports_markdown')} ) }}
{!! ExpandedForm::file('attachments[]', {'multiple': 'multiple','helpText': trans('firefly.upload_max_file_size', {'size': uploadSize|filesize}) }) }}
{!! ExpandedForm::file('attachments[]', ['multiple' => 'multiple','helpText' => trans('firefly.upload_max_file_size', ['size' => print_nice_filesize($uploadSize)])]) }}
{!! ExpandedForm::objectGroup() }}
</div>
</div>
@@ -39,7 +39,7 @@
{!! ExpandedForm::date('start_date') }}
{!! ExpandedForm::date('target_date') }}
{!! ExpandedForm::textarea('notes', null, {helpText: trans('firefly.field_supports_markdown')}) }}
{!! ExpandedForm::file('attachments[]', {'multiple': 'multiple','helpText': trans('firefly.upload_max_file_size', {'size': uploadSize|filesize}) }) }}
{!! ExpandedForm::file('attachments[]', ['multiple' => 'multiple','helpText' => trans('firefly.upload_max_file_size', ['size' => print_nice_filesize($uploadSize)])]) }}
{!! ExpandedForm::objectGroup() }}
</div>
</div>
@@ -54,7 +54,7 @@
{# only correct way to do active checkbox --}}
{!! ExpandedForm::checkbox('active', 1) }}
{!! ExpandedForm::checkbox('apply_rules',1) }}
{!! ExpandedForm::file('attachments[]', {'multiple': 'multiple','helpText': trans('firefly.upload_max_file_size', {'size': uploadSize|filesize}) }) }}
{!! ExpandedForm::file('attachments[]', ['multiple' => 'multiple','helpText' => trans('firefly.upload_max_file_size', ['size' => print_nice_filesize($uploadSize)])]) }}
</div>
</div>
</div>
@@ -56,7 +56,7 @@
{{-- only correct way to do active checkbox --}}
{!! ExpandedForm::checkbox('active', 1, preFilled.active) }}
{!! ExpandedForm::checkbox('apply_rules', 1, preFilled.apply_rules) }}
{!! ExpandedForm::file('attachments[]', {'multiple': 'multiple','helpText': trans('firefly.upload_max_file_size', {'size': uploadSize|filesize}) }) }}
{!! ExpandedForm::file('attachments[]', ['multiple' => 'multiple','helpText' => trans('firefly.upload_max_file_size', ['size' => print_nice_filesize($uploadSize)])]) }}
</div>
</div>
</div>

Some files were not shown because too many files have changed in this diff Show More