mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Small changes in templates [skip ci]
This commit is contained in:
parent
9264f1e9b9
commit
11b5a0294e
@ -53,7 +53,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- panel for credit card options -->
|
<!-- panel for credit card options -->
|
||||||
{% if Session.get('preFilled').accountRole == 'ccAsset' %}
|
{% if preFilled.accountRole == 'ccAsset' %}
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<div class="box-header with-border">
|
<div class="box-header with-border">
|
||||||
<h3 class="box-title">{{ 'credit_card_options'|_ }}</h3>
|
<h3 class="box-title">{{ 'credit_card_options'|_ }}</h3>
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{# SUCCESS MESSAGE (ALWAYS SINGULAR) #}
|
{# SUCCESS MESSAGE (ALWAYS SINGULAR) #}
|
||||||
{% if Session.has('success') %}
|
{% if session_has('success') %}
|
||||||
<div class="alert alert-success alert-dismissible" role="alert">
|
<div class="alert alert-success alert-dismissible" role="alert">
|
||||||
<button type="button" class="close" data-dismiss="alert">
|
<button type="button" class="close" data-dismiss="alert">
|
||||||
<span>×</span><span class="sr-only">{{ 'close'|_ }}</span>
|
<span>×</span><span class="sr-only">{{ 'close'|_ }}</span>
|
||||||
@ -19,7 +19,7 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{# INFO MESSAGE (CAN BE MULTIPLE) #}
|
{# INFO MESSAGE (CAN BE MULTIPLE) #}
|
||||||
{% if Session.has('info') %}
|
{% if session_has('info') %}
|
||||||
<div class="alert alert-info alert-dismissible" role="alert">
|
<div class="alert alert-info alert-dismissible" role="alert">
|
||||||
<button type="button" class="close" data-dismiss="alert">
|
<button type="button" class="close" data-dismiss="alert">
|
||||||
<span>×</span><span class="sr-only">{{ 'close'|_ }}</span>
|
<span>×</span><span class="sr-only">{{ 'close'|_ }}</span>
|
||||||
@ -49,7 +49,7 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{# WARNING MESSAGE (ALWAYS SINGULAR) #}
|
{# WARNING MESSAGE (ALWAYS SINGULAR) #}
|
||||||
{% if Session.has('warning') %}
|
{% if session_has('warning') %}
|
||||||
<div class="alert alert-warning alert-dismissible" role="alert">
|
<div class="alert alert-warning alert-dismissible" role="alert">
|
||||||
<button type="button" class="close" data-dismiss="alert">
|
<button type="button" class="close" data-dismiss="alert">
|
||||||
<span>×</span><span class="sr-only">{{ 'close'|_ }}</span>
|
<span>×</span><span class="sr-only">{{ 'close'|_ }}</span>
|
||||||
@ -59,7 +59,7 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{# ERROR MESSAGE (CAN BE MULTIPLE) #}
|
{# ERROR MESSAGE (CAN BE MULTIPLE) #}
|
||||||
{% if Session.has('error') %}
|
{% if session_has('error') %}
|
||||||
<div class="alert alert-danger alert-dismissible" role="alert">
|
<div class="alert alert-danger alert-dismissible" role="alert">
|
||||||
<button type="button" class="close" data-dismiss="alert">
|
<button type="button" class="close" data-dismiss="alert">
|
||||||
<span>×</span><span class="sr-only">{{ 'close'|_ }}</span>
|
<span>×</span><span class="sr-only">{{ 'close'|_ }}</span>
|
||||||
|
Loading…
Reference in New Issue
Block a user