2017-03-08 13:53:09 -05:00
|
|
|
{% extends "bootstrap/base.html" %}
|
2017-05-09 20:13:44 -04:00
|
|
|
|
2017-03-08 13:53:09 -05:00
|
|
|
{% import "bootstrap/wtf.html" as wtf %}
|
|
|
|
{% import "bootstrap/fixes.html" as fixes %}
|
|
|
|
{% import "bootstrap/utils.html" as util %}
|
|
|
|
|
2017-05-09 22:15:36 -04:00
|
|
|
{% block title %}Cloud Builder - Datapoint.bg{% endblock %}
|
2017-03-08 13:53:09 -05:00
|
|
|
|
2017-05-07 21:33:42 -04:00
|
|
|
{% block head %}
|
|
|
|
{{ super() }}
|
2017-05-09 20:13:44 -04:00
|
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}" type="image/x-icon">
|
|
|
|
<link rel="icon" href="{{ url_for('static', filename='favicon.ico') }}" type="image/x-icon">
|
2017-05-07 21:33:42 -04:00
|
|
|
{% endblock %}
|
|
|
|
|
2017-03-08 13:53:09 -05:00
|
|
|
{% block styles %}
|
|
|
|
{{ super() }}
|
|
|
|
<link href="{{ url_for('static', filename='css/style.css') }}" rel="stylesheet">
|
2018-03-15 19:14:48 -04:00
|
|
|
<link href="{{ url_for('static', filename='css/theme.css') }}" rel="stylesheet">
|
|
|
|
<link href="{{ url_for('static', filename='css/navbar.css') }}" rel="stylesheet">
|
2018-01-11 08:19:59 -05:00
|
|
|
<link href="{{ url_for('static', filename='css/range.css') }}" rel="stylesheet">
|
2018-01-30 21:41:59 -05:00
|
|
|
<link href="{{ url_for('static', filename='css/no-more-tables.css') }}" rel="stylesheet">
|
|
|
|
<link href="{{ url_for('static', filename='css/panel-transparent.css') }}" rel="stylesheet">
|
2017-03-08 13:53:09 -05:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block scripts %}
|
|
|
|
{{ super() }}
|
2017-05-31 11:20:53 -04:00
|
|
|
{{ moment.lang("bg") }}
|
|
|
|
{{ moment.include_moment() }}
|
2017-03-08 13:53:09 -05:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block navbar %}
|
|
|
|
{% include "nav.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2017-05-09 22:15:36 -04:00
|
|
|
{% block outside_container %}{% endblock %}
|
2017-03-08 13:53:09 -05:00
|
|
|
<div class="container">
|
|
|
|
{% for message in get_flashed_messages() %}
|
|
|
|
<div class="alert alert-warning">
|
|
|
|
<button type="button" class="close" data-dismiss="alert">x</button>
|
|
|
|
{{ message }}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
|
2017-06-10 23:26:10 -04:00
|
|
|
<div class="container-fluid">
|
2017-03-08 13:53:09 -05:00
|
|
|
{% block page_content %}{% endblock %}
|
2017-06-10 23:26:10 -04:00
|
|
|
</div>
|
2017-05-09 22:15:36 -04:00
|
|
|
</div>
|
2017-03-08 13:53:09 -05:00
|
|
|
|
|
|
|
{% block footer %}
|
|
|
|
{% endblock %}
|
2017-05-10 23:08:38 -04:00
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|