{% set classes_info_box = "flex items-center bg-blue-500 text-white text-base px-4 py-3 mb-5" %} {% set classes_warning_box = "flex items-center bg-yellow-600 text-white text-base px-4 py-3 mb-5" %}
{% if not GIT_OK %}

Git Error

{{CWD}} is not a valid git repository.

{%else%} {% if GIT_PULL_ERROR %}

Git Pull Error (non fatal)

Please solve by hand.

{{GIT_PULL_ERROR}}
{% endif %} {%if company %}

{{company.name}}

{%else%}

Error

No file "company.json" was found at {{CWD}}.

{%endif%} {%endif%}
{%if company and GIT_OK %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}

{% block main_title %}{% endblock %}

{% block content_header %}{% endblock %}
{% block content %}{% endblock %}
{%endif%}