-
Notifications
You must be signed in to change notification settings - Fork 11
/
backend_files.html
43 lines (38 loc) · 1.62 KB
/
backend_files.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{% extends "base.html" %}
{% block metatitle %}Level 4 outputs: {{ workspace.name }} | OpenSAFELY Jobs{% endblock metatitle %}
{% block breadcrumbs %}
{% #breadcrumbs %}
{% url 'home' as home_url %}
{% breadcrumb title="Home" url=home_url %}
{% breadcrumb location="Project" title=workspace.project.title url=workspace.project.get_absolute_url %}
{% breadcrumb location="Workspace" title=workspace.name url=workspace.get_absolute_url %}
{% breadcrumb title="Files" url=workspace.get_files_url %}
{% breadcrumb title=backend.name|add:" files" active=True %}
{% /breadcrumbs %}
{% endblock breadcrumbs %}
{% block full_width_content %}
<div class="bg-bn-ribbon-200 py-8">
<div class="container xl:max-w-screen-xl">
<h1 class="text-3xl break-words pt-2 md:pt-0 md:text-4xl font-bold text-slate-900">
Level 4 outputs from {{ workspace.name }}
</h1>
<div class="text-slate-800 flex flex-col items-start gap-y-3 max-w-prose">
<p class="mt-2">
Medium privacy (Level 4) files currently on
<strong>{{ backend.name }}</strong>
in the
<strong>{{ workspace.name }}</strong>
workspace.
</p>
<p>
You can see these outputs because you have access to the Level 4 environment on the
{{ backend.name }} backend and have been assigned the ProjectDeveloper role.
</p>
<p class="text-sm font-bold">
You cannot download files from the level 4, you must go through the release process first.
</p>
</div>
</div>
</div>
{% include "_includes/outputs-spa.html" %}
{% endblock %}