<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>{% block title %}Welcome!{% endblock %}</title>
<link rel="icon" type="image/x-icon" href="{{ asset('assets/img/ohau_logo.png') }}"/>
<link rel="stylesheet" href="{{ asset('assets/plugins/bootstrap-4.1.1/css/bootstrap.min.css') }}">
<link rel="stylesheet" href="{{ asset('assets/plugins/fontawesome-free-5.3.1-web/css/all.min.css') }}">
<link rel="stylesheet" href="{{ asset('fos/plugins/jquery-easyui-1.5.5.4/themes/bootstrap/easyui.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('fos/plugins/jquery-easyui-1.5.5.4/themes/icon.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('fos/plugins/jquery-easyui-1.5.5.4/themes/color.css') }}">
{% block stylesheets %}
{% endblock %}
</head>
<body>
{% block main %}
{% block responseflash %}
{% for flash_message in app.session.flashBag.get('success') %}
<div class="alert alert-success alert-dismissable fade in pro">
<a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
<strong>Success:</strong> {{ flash_message }}
</div>
{% endfor %}
{% for flash_message in app.session.flashBag.get('warning') %}
<div class="alert alert-warning alert-dismissable fade in pro">
<a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
<strong>Warning: </strong> {{ flash_message }}
</div>
{% endfor %}
{% for flash_message in app.session.flashBag.get('error') %}
<div class="alert alert-danger alert-dismissable fade in pro">
<a href="#" class="close" data-dismiss="alert" aria-label="close">×</a>
<strong>Error:</strong> {{ flash_message }}
</div>
{% endfor %}
{% endblock %}
{% endblock %}
<script src="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/jquery.min.js') }}"></script>
<script src="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/jquery.easyui.min.js') }}"></script>
<!-- Core Bootstrap Script -->
<script src="{{ asset('assets/plugins/bootstrap-4.1.1/js/bootstrap.min.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/datagrid-filter.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/datagrid-groupview.js') }}"></script>
<script type="application/javascript" src="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/datagrid-detailview.js') }}"></script>
<script src="{{ asset('assets/plugins/jquery-easyui-1.5.5.4/plugins/jquery.maskedbox.js') }}"></script>
<script type="text/javascript" src="{{ asset('assets/plugins/jquery.mask.min.js') }}"></script>
{% block javascripts %}
{% endblock %}
</body>
</html>