mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Fix issues with relative urls
This commit is contained in:
@@ -287,13 +287,13 @@
|
||||
<h3>{{ 'dark_mode_preference'|_ }}</h3>
|
||||
<p class="text-info">{{ 'dark_mode_preference_help'|_ }}</p>
|
||||
{% for mode in availableDarkModes %}
|
||||
<div class="radio">
|
||||
<label>
|
||||
<input type="radio" name="darkMode"
|
||||
value="{{ mode }}" {% if darkMode == mode %} checked {% endif %}>
|
||||
{{ ('dark_mode_option_'~mode)|_ }}
|
||||
</label>
|
||||
</div>
|
||||
<div class="radio">
|
||||
<label>
|
||||
<input type="radio" name="darkMode"
|
||||
value="{{ mode }}" {% if darkMode == mode %} checked {% endif %}>
|
||||
{{ ('dark_mode_option_'~mode)|_ }}
|
||||
</label>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
@@ -313,8 +313,8 @@
|
||||
<div class="col-sm-10">
|
||||
<div class="checkbox">
|
||||
<label>
|
||||
<input type="checkbox" name="notification_{{ id }}" {{ enabled == true ? 'checked' : '' }} value="1">
|
||||
{{ trans('firefly.pref_notification_' ~ id) }}
|
||||
<input type="checkbox" name="notification_{{ id }}" {{ enabled == true ? 'checked' : '' }} value="1">
|
||||
{{ trans('firefly.pref_notification_' ~ id) }}
|
||||
|
||||
</label>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user