aboutsummaryrefslogtreecommitdiffstats
path: root/pyblackbird_cc/templates/resources/resource_detail.html
blob: 6daa42b210f78f0c362f4c44d75579b3ffb67e8f (plain) (blame)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{% extends 'base.html' %}

{% block content %}
  <div class="container">
    <div class="row my-4">
      <div class="col bg-white pt-3 border border-success border-opacity-25 rounded">
        <h1 class="mb-4">{{ resource.name }}</h1>
        <div class="d-flex flex-row justify-content-between my-3">
          <div>
            <span class="fw-bold">Subject:</span> {{ resource.main_resource_category }}
          </div>
          <div class="px-2">
            <span class="fw-bold">Age range:</span> {{ resource.age_range }}
          </div>
          <div class="px-2">
            <span class="fw-bold">Resource type:</span> {{ resource.resource_type }}
          </div>
          <div class="px-2">
            <span class="fw-bold">Number of files:</span> X NUMBER OF FILES
          </div>
        </div>
        <div>
          <span class="fw-bold">Created:</span> {{ resource.created|date:"D d M Y" }}
        </div>
      </div>
    </div>
    <div class="row my-4">
      <div class="col bg-white pt-3 border border-success border-opacity-25 rounded">
        <h4>Feature images</h4>
        <div class="d-flex flex-row justify-content-between">
          {% for tn_url, tn_filename in resource.thumbnails %}
            <div class="m-2">
              <img class="img-fluid rounded" src="{{ tn_url }}" alt="{{ tn_filename }}" />
            </div>
          {% endfor %}
        </div>
      </div>
    </div>
    {% for snapshot_filename, snapshot_urls in resource.snapshot_urls.items %}
      <div class="row my-4">
        <div class="col bg-white pt-3 border border-success border-opacity-25 rounded">
          <h4>File preview:</h4>
          <p>{{ snapshot_filename|cut:".pdf" }}</p>
          <div>
            <div class="d-flex flex-row justify-content-center flex-wrap">
              {% for snapshot_url in snapshot_urls %}
                <div class="m-4">
                  <img class="img-thumbnail rounded"
                       src="{{ snapshot_url }}"
                       alt="{{ snapshot_filename }}" />
                </div>
              {% endfor %}
            </div>
          </div>
        </div>
      </div>
    {% endfor %}
    <div class="row my-5">
      <div class="col bg-white pt-3 border border-success border-opacity-25 rounded">
        <h3>What's included?</h3>
        <div>{{ resource.description }}</div>
      </div>
    </div>
    <div class="row">
      <div class="col bg-white pt-3 border border-success border-opacity-25 rounded">
        <div class="resource-download-panel">
          <h4>Download the resource</h4>
          <div>
            Click
            <button hx-get="/hx-download-btn?rn={{ resource.pdf_filename }}"
                    hx-target="next #download-reveal">here</button>
            to download the resource
          </div>
          <div id="download-reveal"></div>
        </div>
      </div>
      <div>Logged in as {{ request.user.username }}</div>
    </div>
  </div>
{% endblock content %}