2018-11-11 12:41:48 +00:00
|
|
|
{% load static %}
|
|
|
|
{% load i18n %}
|
2018-11-16 10:41:14 +00:00
|
|
|
{% load utils %}
|
2018-11-11 12:41:48 +00:00
|
|
|
|
|
|
|
<!DOCTYPE html>
|
2019-03-10 01:41:31 +00:00
|
|
|
|
2020-02-21 13:20:16 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
2020-02-27 15:39:30 +00:00
|
|
|
<title>{% block title %}{% trans title %}{% endblock %}</title>
|
2020-02-21 13:20:16 +00:00
|
|
|
<link rel="icon" type="image/png" href="{% static 'passbook/logo.png' %}">
|
|
|
|
<link rel="shortcut icon" type="image/png" href="{% static 'passbook/logo.png' %}">
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static 'node_modules/@patternfly/patternfly/patternfly.css' %}">
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static 'node_modules/@patternfly/patternfly/patternfly-addons.css' %}">
|
2020-02-21 17:00:09 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="{% static 'node_modules/@fortawesome/fontawesome-free/css/fontawesome.min.css' %}">
|
2020-02-21 13:20:16 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="{% static 'passbook/pf.css' %}">
|
|
|
|
{% block head %}
|
|
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% if 'impersonate_id' in request.session %}
|
|
|
|
<div class="experimental-pf-bar">
|
|
|
|
<span id="experimentalBar" class="experimental-pf-text">
|
|
|
|
{% blocktrans with user=user %}You're currently impersonating {{ user }}.{% endblocktrans %}
|
|
|
|
<a href="?__unimpersonate=True" id="acceptMessage">{% trans 'Stop impersonation' %}</a>
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% block body %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
|
|
{% endblock %}
|
|
|
|
<script src="{% static 'passbook/pf.js' %}"></script>
|
|
|
|
</body>
|
2018-12-09 20:07:18 +00:00
|
|
|
</html>
|