-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
139 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
.table thead th { | ||
text-transform: none; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,35 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/> | ||
<link rel="stylesheet" href="{{ url_for('admin:statics', path='css/tabler.min.css') }}"> | ||
<link rel="stylesheet" href="{{ url_for('admin:statics', path='css/fontawesome.min.css') }}"> | ||
<link rel="stylesheet" href="{{ url_for('admin:statics', path='css/select2.min.css') }}"> | ||
<link rel="stylesheet" href="{{ url_for('admin:statics', path='css/flatpickr.min.css') }}"> | ||
<link rel="stylesheet" href="{{ url_for('admin:statics', path='css/main.css') }}"> | ||
{% block head %} | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" /> | ||
<link rel="stylesheet" href="{{ url_for('admin:statics', path='css/tabler.min.css') }}"> | ||
<link rel="stylesheet" href="{{ url_for('admin:statics', path='css/fontawesome.min.css') }}"> | ||
<link rel="stylesheet" href="{{ url_for('admin:statics', path='css/select2.min.css') }}"> | ||
<link rel="stylesheet" href="{{ url_for('admin:statics', path='css/flatpickr.min.css') }}"> | ||
<link rel="stylesheet" href="{{ url_for('admin:statics', path='css/main.css') }}"> | ||
{% block head %} | ||
{% endblock %} | ||
<title>{{ admin.title }}</title> | ||
</head> | ||
|
||
<body> | ||
{% block body %} | ||
<main> | ||
{% block main %} | ||
{% endblock %} | ||
<title>{{ admin.title }}</title> | ||
</head> | ||
<body> | ||
{% block body %} | ||
<main> | ||
{% block main %} | ||
{% endblock %} | ||
</main> | ||
{% endblock %} | ||
<script type="text/javascript" src="{{ url_for('admin:statics', path='js/jquery.min.js') }}"></script> | ||
<script type="text/javascript" src="{{ url_for('admin:statics', path='js/tabler.min.js') }}"></script> | ||
<script type="text/javascript" src="{{ url_for('admin:statics', path='js/popper.min.js') }}"></script> | ||
<script type="text/javascript" src="{{ url_for('admin:statics', path='js/bootstrap.min.js') }}"></script> | ||
<script type="text/javascript" src="{{ url_for('admin:statics', path='js/select2.full.min.js') }}"></script> | ||
<script type="text/javascript" src="{{ url_for('admin:statics', path='js/flatpickr.min.js') }}"></script> | ||
<script type="text/javascript" src="{{ url_for('admin:statics', path='js/main.js') }}"></script> | ||
{% block tail %} | ||
{% endblock %} | ||
</body> | ||
</html> | ||
</main> | ||
{% endblock %} | ||
<script type="text/javascript" src="{{ url_for('admin:statics', path='js/jquery.min.js') }}"></script> | ||
<script type="text/javascript" src="{{ url_for('admin:statics', path='js/tabler.min.js') }}"></script> | ||
<script type="text/javascript" src="{{ url_for('admin:statics', path='js/popper.min.js') }}"></script> | ||
<script type="text/javascript" src="{{ url_for('admin:statics', path='js/bootstrap.min.js') }}"></script> | ||
<script type="text/javascript" src="{{ url_for('admin:statics', path='js/select2.full.min.js') }}"></script> | ||
<script type="text/javascript" src="{{ url_for('admin:statics', path='js/flatpickr.min.js') }}"></script> | ||
<script type="text/javascript" src="{{ url_for('admin:statics', path='js/main.js') }}"></script> | ||
{% block tail %} | ||
{% endblock %} | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,4 +46,4 @@ <h3 class="card-title">New {{ model_view.name }}</h3> | |
</div> | ||
</div> | ||
</div> | ||
{% endblock %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ | |
</div> | ||
</div> | ||
</div> | ||
{% endblock %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{% extends "layout.html" %} | ||
{% block content %} | ||
{% endblock %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.