contentdb/app/templates/base.html

153 lines
6.3 KiB
HTML
Raw Normal View History

2018-03-18 18:43:30 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}title{% endblock %} - {{ config.USER_APP_NAME }}</title>
2018-12-21 17:55:22 +01:00
<link rel="stylesheet" type="text/css" href="/static/bootstrap.css">
2019-07-29 21:41:48 +02:00
<link rel="stylesheet" type="text/css" href="/static/custom.css?v=7">
<link rel="search" type="application/opensearchdescription+xml" href="/static/opensearch.xml" title="ContentDB" />
2019-06-07 17:54:33 +02:00
<link rel="shortcut icon" href="/favicon-16.png" sizes="16x16">
<link rel="icon" href="/favicon-128.png" sizes="128x128">
<link rel="icon" href="/favicon-32.png" sizes="32x32">
2018-05-11 16:04:17 +02:00
{% block headextra %}{% endblock %}
2018-03-18 18:43:30 +01:00
</head>
<body>
2018-12-21 15:45:54 +01:00
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
2018-05-18 01:16:10 +02:00
<div class="container">
2018-12-21 15:45:54 +01:00
<a class="navbar-brand" href="/">{{ config.USER_APP_NAME }}</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarColor01" aria-controls="navbarColor01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarColor01">
<ul class="navbar-nav mr-auto">
{% for item in current_menu.children recursive %}
{% if item.visible %}
<li class="nav-item {% if item.children %} dropdown{% endif %}">
<a class="nav-link" href="{{ item.url }}"
{% if item.children %}
class="dropdown-toggle"
data-toggle="dropdown"
role="button"
aria-expanded="false"
{% endif %}>
{{ item.text }}
2018-05-18 01:16:10 +02:00
{% if item.children %}
2018-12-21 15:45:54 +01:00
<span class="caret"></span>
{% endif %}
</a>
2018-03-21 20:24:45 +01:00
{% if item.children %}
2018-12-21 15:45:54 +01:00
<ul class="dropdown-menu" role="menu">
{{ loop(item.children) }}
</ul>
2018-05-18 01:16:10 +02:00
{% endif %}
2018-12-21 15:45:54 +01:00
</li>
{% endif %}
{% endfor %}
</ul>
<form class="form-inline my-2 my-lg-0" method="GET" action="/packages/">
{% if type %}<input type="hidden" name="type" value="{{ type }}" />{% endif %}
<input class="form-control mr-sm-2" name="q" type="text" placeholder="Search {{ title | lower or 'all packages' }}" value="{{ query or ''}}">
<input class="btn btn-secondary my-2 my-sm-0 mr-sm-2" type="submit" value="Search" />
2018-12-23 18:34:44 +01:00
<!-- <input class="btn btn-secondary my-2 my-sm-0"
2018-12-23 18:11:52 +01:00
data-toggle="tooltip" data-placement="bottom"
title="Go to the first found result for this query."
2018-12-23 18:34:44 +01:00
type="submit" name="lucky" value="First" /> -->
2018-12-21 15:45:54 +01:00
</form>
<ul class="navbar-nav ml-auto">
{% if current_user.is_authenticated %}
<li class="nav-item"><a class="nav-link" href="{{ url_for('notifications_page') }}">
<img src="/static/notification{% if current_user.notifications %}_alert{% endif %}.svg" />
</a></li>
<li class="nav-item"><a class="nav-link" href="{{ url_for('create_edit_package_page') }}">+</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle"
data-toggle="dropdown"
role="button"
aria-expanded="false">{{ current_user.display_name }}
<span class="caret"></span></a>
2018-05-18 01:16:10 +02:00
<ul class="dropdown-menu" role="menu">
2018-12-21 15:45:54 +01:00
<li class="nav-item">
<a class="nav-link" href="{{ url_for('user_profile_page', username=current_user.username) }}">Profile</a>
2018-12-27 16:32:15 +01:00
</li>
<li class="nav-item">
<a class="nav-link" href="{{ url_for('user_profile_page', username=current_user.username) }}#unadded-topics">Your unadded topics</a>
2018-12-27 16:32:15 +01:00
</li>
2018-12-21 15:45:54 +01:00
{% if current_user.canAccessTodoList() %}
2019-07-29 22:44:39 +02:00
<li class="nav-item"><a class="nav-link" href="{{ url_for('todo_page') }}">{{ _("Work Queue") }}</a></li>
<li class="nav-item"><a class="nav-link" href="{{ url_for('user_list_page') }}">{{ _("User list") }}</a></li>
2018-12-21 15:45:54 +01:00
{% endif %}
<li class="nav-item">
2019-07-29 22:44:39 +02:00
<a class="nav-link" href="{{ url_for('todo_topics_page') }}">{{ _("All unadded topics") }}</a>
2018-12-27 16:32:15 +01:00
</li>
2018-12-21 15:45:54 +01:00
{% if current_user.rank == current_user.rank.ADMIN %}
2019-07-29 22:44:39 +02:00
<li class="nav-item"><a class="nav-link" href="{{ url_for('admin_page') }}">{{ _("Admin") }}</a></li>
2018-12-21 15:45:54 +01:00
{% endif %}
{% if current_user.rank == current_user.rank.MODERATOR %}
2019-07-29 22:44:39 +02:00
<li class="nav-item"><a class="nav-link" href="{{ url_for('tag_list_page') }}">{{ _("Tag Editor") }}</a></li>
<li class="nav-item"><a class="nav-link" href="{{ url_for('license_list_page') }}">{{ _("License Editor") }}</a></li>
2018-12-21 15:45:54 +01:00
{% endif %}
2019-07-29 22:44:39 +02:00
<li class="nav-item"><a class="nav-link" href="{{ url_for('user.logout') }}">{{ _("Sign out") }}</a></li>
2018-05-18 01:16:10 +02:00
</ul>
</li>
2018-12-21 15:45:54 +01:00
{% else %}
2019-07-29 22:44:39 +02:00
<li><a class="nav-link" href="{{ url_for('user.login') }}">{{ _("Sign in") }}</a></li>
2018-05-18 01:16:10 +02:00
{% endif %}
2018-12-21 15:45:54 +01:00
</ul>
</div>
2018-05-18 01:16:10 +02:00
</div>
2018-03-18 18:43:30 +01:00
</nav>
{% block flash_messages %}
{%- with messages = get_flashed_messages(with_categories=true) -%}
{% if messages %}
<ul id="alerts">
{% for category, message in messages %}
2018-12-22 14:14:08 +01:00
<li class="alert alert-{{category}} container">
2018-03-18 18:43:30 +01:00
<span class="icon_message"></span>
{{ message|safe }}
<div style="clear: both;"></div>
</li>
{% endfor %}
</ul>
{% endif %}
{%- endwith %}
{% endblock %}
{% block container %}
2018-12-21 15:45:54 +01:00
<main class="container mt-4">
2018-03-18 18:43:30 +01:00
{% block content %}
{% endblock %}
</main>
{% endblock %}
2018-05-18 02:27:11 +02:00
2018-12-21 16:58:43 +01:00
<footer class="container footer-copyright my-5 page-footer font-small text-center">
2019-04-23 02:30:17 +02:00
ContentDB &copy; 2018-9 to <a href="https://rubenwardy.com/">rubenwardy</a> |
2018-06-02 18:17:32 +02:00
<a href="https://github.com/minetest/contentdb">GitHub</a> |
2019-07-29 22:44:39 +02:00
<a href="{{ url_for('flatpage', path='help') }}">{{ _("Help") }}</a> |
<a href="{{ url_for('flatpage', path='policy_and_guidance') }}">{{ _("Policy and Guidance") }}</a> |
<a href="{{ url_for('flatpage', path='help/reporting') }}">{{ _("Report / DMCA") }}</a> |
<a href="{{ url_for('user_list_page') }}">{{ _("User List") }}</a>
2018-05-18 02:27:11 +02:00
</footer>
2018-12-21 15:45:54 +01:00
2018-12-22 12:23:58 +01:00
<script src="/static/jquery.min.js"></script>
<script src="/static/popper.min.js"></script>
<script src="/static/bootstrap.min.js"></script>
<script src="/static/easymde.min.js"></script>
<link rel="stylesheet" type="text/css" href="/static/easymde.min.css">
<script>
$("textarea.markdown").each(function() {
2019-01-04 18:57:00 +01:00
new EasyMDE({ element: this, hideIcons: ["image"], forceSync: true });
})
</script>
2018-12-22 12:23:58 +01:00
{% block scriptextra %}{% endblock %}
2018-12-21 15:45:54 +01:00
</body>
2018-03-18 18:43:30 +01:00
</html>