From eeaddb27560d723ca7d61359744ceb2709fccd2d Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Tue, 15 Oct 2024 21:01:31 +0100 Subject: Renamed from pyblackbird_cc to alphabetlearning - everywhere --- .../templates/allauth/elements/alert.html | 7 --- .../templates/allauth/elements/badge.html | 6 -- .../templates/allauth/elements/button.html | 20 ------- .../templates/allauth/elements/field.html | 66 ---------------------- .../templates/allauth/elements/fields.html | 3 - pyblackbird_cc/templates/allauth/elements/h1.html | 5 -- pyblackbird_cc/templates/allauth/elements/h2.html | 5 -- .../templates/allauth/elements/panel.html | 19 ------- .../templates/allauth/elements/table.html | 6 -- 9 files changed, 137 deletions(-) delete mode 100644 pyblackbird_cc/templates/allauth/elements/alert.html delete mode 100644 pyblackbird_cc/templates/allauth/elements/badge.html delete mode 100644 pyblackbird_cc/templates/allauth/elements/button.html delete mode 100644 pyblackbird_cc/templates/allauth/elements/field.html delete mode 100644 pyblackbird_cc/templates/allauth/elements/fields.html delete mode 100644 pyblackbird_cc/templates/allauth/elements/h1.html delete mode 100644 pyblackbird_cc/templates/allauth/elements/h2.html delete mode 100644 pyblackbird_cc/templates/allauth/elements/panel.html delete mode 100644 pyblackbird_cc/templates/allauth/elements/table.html (limited to 'pyblackbird_cc/templates/allauth/elements') diff --git a/pyblackbird_cc/templates/allauth/elements/alert.html b/pyblackbird_cc/templates/allauth/elements/alert.html deleted file mode 100644 index 535d394..0000000 --- a/pyblackbird_cc/templates/allauth/elements/alert.html +++ /dev/null @@ -1,7 +0,0 @@ -{% load i18n %} -{% load allauth %} - -
- {% slot message %} -{% endslot %} -
diff --git a/pyblackbird_cc/templates/allauth/elements/badge.html b/pyblackbird_cc/templates/allauth/elements/badge.html deleted file mode 100644 index e86669b..0000000 --- a/pyblackbird_cc/templates/allauth/elements/badge.html +++ /dev/null @@ -1,6 +0,0 @@ -{% load allauth %} - - - {% slot %} -{% endslot %} - diff --git a/pyblackbird_cc/templates/allauth/elements/button.html b/pyblackbird_cc/templates/allauth/elements/button.html deleted file mode 100644 index b88a209..0000000 --- a/pyblackbird_cc/templates/allauth/elements/button.html +++ /dev/null @@ -1,20 +0,0 @@ -{% load allauth %} - -{% comment %} djlint:off {% endcomment %} -<{% if attrs.href %}a href="{{ attrs.href }}"{% else %}button{% endif %} - {% if attrs.form %}form="{{ attrs.form }}"{% endif %} - {% if attrs.id %}id="{{ attrs.id }}"{% endif %} - {% if attrs.name %}name="{{ attrs.name }}"{% endif %} - {% if attrs.type %}type="{{ attrs.type }}"{% endif %} - class="btn -{% if 'success' in attrs.tags %}btn-success -{% elif 'warning' in attrs.tags %}btn-warning -{% elif 'secondary' in attrs.tags %}btn-secondary -{% elif 'danger' in attrs.tags %}btn-danger -{% elif 'primary' in attrs.tags %}btn-primary -{% else %}btn-primary -{% endif %}" -> - {% slot %} - {% endslot %} - diff --git a/pyblackbird_cc/templates/allauth/elements/field.html b/pyblackbird_cc/templates/allauth/elements/field.html deleted file mode 100644 index dc5f303..0000000 --- a/pyblackbird_cc/templates/allauth/elements/field.html +++ /dev/null @@ -1,66 +0,0 @@ -{% load allauth %} -{% load crispy_forms_tags %} - -{% if attrs.type == "textarea" %} -
-
- -
- -
-{% elif attrs.type == "radio" %} -
-
-
- - -
-
-
-{% else %} -
- -
-
- -
-{% endif %} -{% if slots.help_text %} -
{% slot help_text %}{% endslot %}
-{% endif %} diff --git a/pyblackbird_cc/templates/allauth/elements/fields.html b/pyblackbird_cc/templates/allauth/elements/fields.html deleted file mode 100644 index ae8e104..0000000 --- a/pyblackbird_cc/templates/allauth/elements/fields.html +++ /dev/null @@ -1,3 +0,0 @@ -{% load crispy_forms_tags %} - -{{ attrs.form|crispy }} diff --git a/pyblackbird_cc/templates/allauth/elements/h1.html b/pyblackbird_cc/templates/allauth/elements/h1.html deleted file mode 100644 index 40ebed8..0000000 --- a/pyblackbird_cc/templates/allauth/elements/h1.html +++ /dev/null @@ -1,5 +0,0 @@ -{% load allauth %} -

- {% slot default %} - {% endslot %} -

diff --git a/pyblackbird_cc/templates/allauth/elements/h2.html b/pyblackbird_cc/templates/allauth/elements/h2.html deleted file mode 100644 index e2b412a..0000000 --- a/pyblackbird_cc/templates/allauth/elements/h2.html +++ /dev/null @@ -1,5 +0,0 @@ -{% load allauth %} -

- {% slot default %} - {% endslot %} -

diff --git a/pyblackbird_cc/templates/allauth/elements/panel.html b/pyblackbird_cc/templates/allauth/elements/panel.html deleted file mode 100644 index 43a7a54..0000000 --- a/pyblackbird_cc/templates/allauth/elements/panel.html +++ /dev/null @@ -1,19 +0,0 @@ -{% load allauth %} - -
-
-
-

- {% slot title %} - {% endslot %} -

- {% slot body %} - {% endslot %} - {% if slots.actions %} -
    - {% for action in slots.actions %}
  • {{ action }}
  • {% endfor %} -
- {% endif %} -
-
-
diff --git a/pyblackbird_cc/templates/allauth/elements/table.html b/pyblackbird_cc/templates/allauth/elements/table.html deleted file mode 100644 index 13cc5da..0000000 --- a/pyblackbird_cc/templates/allauth/elements/table.html +++ /dev/null @@ -1,6 +0,0 @@ -{% load allauth %} - - - {% slot %} -{% endslot %} -
-- cgit v1.2.3