{% if app.user.showMessageForCustomer %}
<br/><br/><br/>
{% endif %}
<footer class="footer" style="padding: 0px 15px 0px;">
<div class="container-fluid">
<div class="row">
<div class="col-12" style="margin-bottom: 40px;">
<p class="text-center">
<a href="https://evosoft.pl" class="text-primary"><strong>EVOSOFT</strong></a> © 2019-{{ date('now')|date('Y') }} Wszelkie prawa zastrzeżone.
<span style="float: right">
{% if showCsvLogo() %}
<a href="https://sklep.csv.pl/" target="_blank">
<img src="{{ asset('images/csvlogo.png') }}" alt="" height="24">
</a>
{% endif %}
{% if showBpflowLogo() %}
<a href="http://www.evosoft.pl/strona/bp-flow/" target="_blank">
<img src="{{ asset('images/bpflowlogo.png') }}" alt="" height="24">
</a>
{% endif %}
</span>
<br/>
<a href="{{ path('regulations_show') }}" class="text-primary"><strong>Regulamin</strong></a>
</p>
</div>
</div>
{% if app.user.showMessageForCustomer %}
<div class="alert alert-primary" role="alert" style="position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; margin: 0; border-radius: 0;">
{{ app.user.messageForCustomer }}
</div>
{% endif %}
</div>
{% if showAnnouncementForSupplier is defined and showAnnouncementForRecipient is defined and showAnnouncementForSupplier and showAnnouncementForRecipient %}
<script type="text/javascript">
$( document ).ready(function() {
$('#fullScreenPopupLabel').html('Komunikat dla dostawców oraz odbiorców');
$('#fullScreenPopupMessage').html("{{ (announcementForSupplierContent~announcementForRecipientContent)|raw }}");
$('#fullScreenPopup').modal('show');
});
</script>
{% elseif showAnnouncementForSupplier is defined and showAnnouncementForSupplier %}
<script type="text/javascript">
$( document ).ready(function() {
$('#fullScreenPopupLabel').html('Komunikat dla dostawców');
$('#fullScreenPopupMessage').html("{{ (announcementForSupplierContent)|raw }}");
$('#fullScreenPopup').modal('show');
});
</script>
{% elseif showAnnouncementForRecipient is defined and showAnnouncementForRecipient %}
<script type="text/javascript">
$( document ).ready(function() {
$('#fullScreenPopupLabel').html('Komunikat dla odbiorców');
$('#fullScreenPopupMessage').html("{{ (announcementForRecipientContent)|raw }}");
$('#fullScreenPopup').modal('show');
});
</script>
{% endif %}
</footer>