mirror of
https://github.com/chibicitiberiu/ytsm.git
synced 2024-02-24 05:43:31 +00:00
88 lines
4.3 KiB
HTML
88 lines
4.3 KiB
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<title>{% block title %}YouTube Subscription Manager{% endblock %}</title>
|
|
|
|
<link rel="shortcut icon" type="image/x-icon" href="{% static 'YtManagerApp/favicon.ico' %}"/>
|
|
|
|
<link rel="stylesheet" href="{% static 'YtManagerApp/import/bootstrap/css/bootstrap.min.css' %}">
|
|
<link rel="stylesheet" href="{% static 'YtManagerApp/import/typicons/typicons.min.css' %}" />
|
|
<link rel="stylesheet" href="{% static 'YtManagerApp/css/style.css' %}">
|
|
{% block stylesheets %}
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
|
<a class="navbar-brand" href="{% url 'home' %}">YouTube Manager</a>
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
|
|
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
|
|
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
<ul class="navbar-nav ml-auto">
|
|
{% if request.user.is_authenticated %}
|
|
<li class="nav-item dropdown">
|
|
<a class="nav-link dropdown-toggle" href="#" id="userDropdown" role="button"
|
|
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
Welcome,
|
|
{% if request.user.first_name %}
|
|
{{ request.user.first_name }}
|
|
{% else %}
|
|
{{ request.user.username }}
|
|
{% endif %}
|
|
</a>
|
|
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="userDropdown">
|
|
<a class="dropdown-item" href="{% url 'settings' %}">Settings</a>
|
|
{% if request.user.is_superuser %}
|
|
<a class="dropdown-item" href="{% url 'admin_settings' %}">Admin settings</a>
|
|
{% endif %}
|
|
<div class="dropdown-divider"></div>
|
|
<a class="dropdown-item" href="{% url 'logout' %}">Log out</a>
|
|
</div>
|
|
</li>
|
|
{% else %}
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{% url 'login' %}">Login</a>
|
|
</li>
|
|
{% if global_preferences.general__allow_registrations %}
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{% url 'register' %}">Register</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
<div id="main_body" class="container-fluid">
|
|
{% block body %}
|
|
{% endblock %}
|
|
</div>
|
|
|
|
<footer id="main_footer" class="footer bg-light row">
|
|
<button id="btn_sync_now" class="btn btn-sm btn-light" title="Synchronize now!">
|
|
<span class="typcn typcn-arrow-sync" aria-hidden="true"></span>
|
|
</button>
|
|
<span id="status-message" class="text-muted"></span>
|
|
<div id="status-progress" class="progress my-2 ml-auto invisible" style="width: 15rem">
|
|
<div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar" style="width: 25%" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
<script src="{% static 'YtManagerApp/import/jquery/jquery-3.3.1.min.js' %}"></script>
|
|
<script src="{% static 'YtManagerApp/import/popper/popper.min.js' %}"></script>
|
|
<script src="{% static 'YtManagerApp/import/bootstrap/js/bootstrap.min.js' %}"></script>
|
|
<script>
|
|
{% include 'YtManagerApp/js/common.js' %}
|
|
</script>
|
|
{% block scripts %}
|
|
{% endblock %}
|
|
</body>
|
|
</html> |