aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/templates/resources/resource_detail.html
blob: 5012c5b934105bc99c39b91a951abfe4714091be (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
81
82
83
84
85
86
87
88
89
90
91
{% extends 'base.html' %}

{% load markdown_extras %}

{% block content %}

<div>
    <div>
        {% for tn_url, tn_filename in resource.thumbnails %}
        <div>
            <img src="{{ tn_url }}" alt="{{ tn_filename }}"/>
        </div>
        {% endfor %}
    </div> 
    <div>
        <div>
            <div>
                <p>{{ resource.name }}</p>
            </div> 
        </div>
        <div>
            <div>
                <p class="boo-magenta my-1 fw-semibold fs-5">{{ resource.main_resource_category }}</p>
            </div> 
            <div>
                <p class="text-secondary my-1 fw-semibold fs-5">{{ resource.age_range }}</p>
            </div>
        </div>

        <div>
            {% if resource.pdf_filenames|length > 1 %} 
                <p>Contains {{ resource.pdf_filenames|length }} PDF files.</p>
            {% else %}
                <p>Contains {{ resource.pdf_filenames|length }} PDF file.</p>
            {% endif %}
        </div>
        <div>
            <p>£{{ resource.price|floatformat:2 }} (or 1 credit)</p>
        </div>

        <hr>

        <div>
            <div>
                <p>Product summary</p>
                <p>{{resource.card_description}}</p>
            </div> 
        </div>
        <div>
            <div>
                {% if resource.in_cart %}
                    <form action="{% url 'payments:add_to_basket' resource.id  %}" method="get" accept-charset="utf-8">
                        <button>
                            In basket
                        </button>
                    </form>
                {% else %}
                    <form action="{% url 'payments:add_to_basket' resource.id  %}" method="get" accept-charset="utf-8">
                        <button>
                            Add to basket
                        </button>
                    </form>

                {% endif %}
            </div>
        </div>
    </div> 
</div>

<!-- Here be the carousel stuff -->
<!-- except we are doing away with the carousel in this design -->
<div class="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>
    <div>
        <h4>Product detail</h4>
        {{ resource.description | markdown | safe }}
    </div>
</div>

{% endblock content %}