From 6ef5e1a50e29938f5bdb852f20e2f8be6ea2bc95 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Wed, 15 May 2024 18:25:01 +0100 Subject: Adds an admin bar to resources page and moves some stuff to home --- pyblackbird_cc/templates/base.html | 3 + pyblackbird_cc/templates/pages/home.html | 63 +++++++++ .../templates/resources/resource_list.html | 152 +++++++-------------- 3 files changed, 117 insertions(+), 101 deletions(-) (limited to 'pyblackbird_cc/templates') diff --git a/pyblackbird_cc/templates/base.html b/pyblackbird_cc/templates/base.html index e3dfa46..2f4c469 100644 --- a/pyblackbird_cc/templates/base.html +++ b/pyblackbird_cc/templates/base.html @@ -74,6 +74,9 @@
Etsy
+
+ Resources +
Blog
diff --git a/pyblackbird_cc/templates/pages/home.html b/pyblackbird_cc/templates/pages/home.html index 94d9808..deb6278 100644 --- a/pyblackbird_cc/templates/pages/home.html +++ b/pyblackbird_cc/templates/pages/home.html @@ -1 +1,64 @@ {% extends "base.html" %} + +{% load static %} + +{% block content %} +
+
+
+

High quality educational resources

+
+
+

Stuff and intro text

+
+
+
+
+
+
+ PLACEHOLDER + PLACEHOLDER + PLACEHOLDER +
+
+
+
+
+
Welcome!
+

+ I love to make clear and colourful resources and can't resist using rainbow colours + which so often help make learning visually clearer. I'd love to know what you think of + what you download, don't hesitate to let me know if you have any suggestions or requests... + I am also available to tutor younger learners online via Sherpa! +

+
+
+

Subscriptions available now!

+

+ I love to make clear and colourful resources and can't resist using rainbow colours + which so often help make learning visually clearer. I'd love to know what you think of + what you download, don't hesitate to let me know if you have any suggestions or requests... + I am also available to tutor younger learners online via Sherpa! +

+

What is available?

+
    +
  • Full access to all resources (over 250 resources)
  • +
  • Customised resources upon request
  • +
  • New resources coming online all the time
  • +
+ Subscribe now +
+
+
+
+
+

Featured resources

+
+
+
+

These are my latest resources. They are great!

+
+
+
+
+{% endblock content %} diff --git a/pyblackbird_cc/templates/resources/resource_list.html b/pyblackbird_cc/templates/resources/resource_list.html index 8d053ff..5efd9bd 100644 --- a/pyblackbird_cc/templates/resources/resource_list.html +++ b/pyblackbird_cc/templates/resources/resource_list.html @@ -6,117 +6,67 @@ Joanna Lemon Resources - Resource List {% endblock title %} {% block content %} -
-
+ {% if request.user.is_authenticated and request.user.is_staff %} +
+
Admin bar
+

+ Only you will see this bar - normal users will not see it. It allows us to + include buttons for adding new resources, etc. +

- {% if request.user.is_authenticated and request.user.is_staff %} - -
Logged in as {{ request.user.email }}
-
-
- {% csrf_token %} - -
-
- {% endif %} -
-
-
-
-
-

High quality educational resources

-
-
-

Stuff and intro text

+ -
-
-
-
-
- PLACEHOLDER - PLACEHOLDER - PLACEHOLDER +
+ Logged in as + {{ request.user.email }}
-
-
-
-
-
Welcome!
-

- I love to make clear and colourful resources and can't resist using rainbow colours - which so often help make learning visually clearer. I'd love to know what you think of - what you download, don't hesitate to let me know if you have any suggestions or requests... - I am also available to tutor younger learners online via Sherpa! -

-
-
-

Subscriptions available now!

-

- I love to make clear and colourful resources and can't resist using rainbow colours - which so often help make learning visually clearer. I'd love to know what you think of - what you download, don't hesitate to let me know if you have any suggestions or requests... - I am also available to tutor younger learners online via Sherpa! -

-

What is available?

-
    -
  • Full access to all resources (over 250 resources)
  • -
  • Customised resources upon request
  • -
  • New resources coming online all the time
  • -
- Subscribe now -
-
-
-
-

Featured resources

-
-
-
-

These are my latest resources. They are great!

+
+
+ {% csrf_token %} + +
-
-
- {% if resource_list %} -
- {% for resource in resource_list %} -
-
-
- Featured - -
+
+ {% endif %} +
+
+ {% if resource_list %} +
+ {% for resource in resource_list %} +
+
+
+ Featured + +
+
+ {{ resource.thumbnail_filename }} +
+
{{ resource.name }}
+
+
+ {{ resource.main_resource_category_name }}
- {{ resource.thumbnail_filename }} -
-
{{ resource.name }}
-
-
- {{ resource.main_resource_category_name }} -
-
- {{ resource.age_range }} -
-
-

{{ resource.description }}

- Details +
+ {{ resource.age_range }}
- {% endfor %} +

{{ resource.description }}

+ Details +
- {% else %} -

There are no resources

- {% endif %} + {% endfor %}
-
+ {% else %} +

There are no resources

+ {% endif %}
- {% endblock content %} -
+
+{% endblock content %} -- cgit v1.2.3