aboutsummaryrefslogtreecommitdiffstats
path: root/pyblackbird_cc/templates/resources/resource_detail.html
blob: 7f7362cb1e4c8db8c0a471e0e445ab4e7c7f0f7d (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
{% extends 'base.html' %}

{% load markdown_extras %}

{% block content %}

<div class="row justify-content-between my-4">
    <div class="col">
        {% for tn_url, tn_filename in resource.thumbnails %}
        <div>
            <img class="image-fluid float-start rounded mx-1" src="{{ tn_url }}" alt="{{ tn_filename }}"/>
        </div>
        {% endfor %}
    </div> 
    <div class="col">
        <div class="row">
            <div class="col">
                <h2 class="my-1">{{ resource.name }}</h2>
            </div> 
        </div>
        <div class="row">
            <div class="col">
                <p class="my-1">{{ resource.main_resource_category }}</p>
            </div> 
        </div>
        <div class="row">
            <div class="col">
                <p class="my-1">{{ resource.age_range }}</p>
            </div> 
        </div>
        <div class="row">
            <div class="col">
                <p class="my-1">Number of PDF files: {{ resource.pdf_filenames|length }}</p>
            </div> 
        </div>
        <div class="row">
            <div class="col">
                <h4>Product summary</h4>

                <p>{{resource.card_description}}</p>
            </div> 
        </div>
        <div>
            <div class="my-4 d-flex justify-content-center">
                <button class="btn btn-primary w-100"> 
                    Add to cart 
                </button>
            </div>

        </div>
    </div> 
</div>

<!-- Here be the carousel stuff -->
<!-- except we are doing away with the carousel in this design -->
<div class="d-flex justify-content-start">
    {% for snapshot_filename, snapshot_urls in resource.snapshot_urls.items %}
    {% for snapshot_url in snapshot_urls %}
    <div>
        <img src="{{ snapshot_url }}" class="d-block mx-auto img-thumbnail rounded" alt="{{ snapshot_name }}">
    </div>
    {% endfor %}
    {% endfor %}
</div>

<!-- detailed description row -->
<div class="row py-4">
    <div class="col-12">
        <h4>Product detail</h4>
        {{ resource.description | markdown | safe }}
    </div>
</div>

{% endblock content %}