Skip to content

Commit

Permalink
Fix recursion for the extends tag
Browse files Browse the repository at this point in the history
We changed how we load plugin templates, this updates the West plugin to accommodate that.
  • Loading branch information
kitsuta committed Feb 21, 2024
1 parent 05371ad commit fe1e2e5
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion magwest/templates/guest_checklist/band_merch_deadline.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "guest_checklist/band_merch_deadline.html" %}
{% extends "uber/templates/guest_checklist/band_merch_deadline.html" %}

{% block deadline_headline %}Selling Merch and Autograph Sessions{% endblock %}
{% block form_title %}Selling Merch and Autograph Sessions{% endblock %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "guest_checklist/band_merch_deadline.html" %}
{% extends "uber/templates/guest_checklist/band_merch_deadline.html" %}

{% block deadline_headline %}Selling Merch and Autograph Sessions{% endblock %}
{% block form_title %}Selling Merch and Autograph Sessions{% endblock %}
Expand Down
2 changes: 1 addition & 1 deletion magwest/templates/guest_checklist/mc_deadline.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "guest_checklist/mc_deadline.html" %}
{% extends "uber/templates/guest_checklist/mc_deadline.html" %}

{% block form_desc %}
Would you like one of our Official {{ c.EVENT_NAME }} Guests™ to introduce your band
Expand Down
2 changes: 1 addition & 1 deletion magwest/templates/guest_checklist/stage_plot_deadline.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "guest_checklist/stage_plot_deadline.html" %}
{% extends "uber/templates/guest_checklist/stage_plot_deadline.html" %}
{% block deadline_text %}
Please upload an exact description of your desired stage layout.
Also include any needed extra rental requests, set lists, information regarding
Expand Down
2 changes: 1 addition & 1 deletion magwest/templates/guests/band_agreement.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "guests/band_agreement.html" %}
{% extends "uber/templates/guests/band_agreement.html" %}

{% block band_text_merch_inner %}
On the night of the performance, table space will be provided immediately outside the concert hall for
Expand Down
2 changes: 1 addition & 1 deletion magwest/templates/preregistration/dealer_confirmation.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "./preregistration/preregbase.html" %}
{% extends "uber/templates/preregistration/preregbase.html" %}
{% block title %}Dealer Application Received{% endblock %}
{% block backlink %}{% endblock %}
{% block content %}
Expand Down
2 changes: 1 addition & 1 deletion magwest/templates/staffing/food_restrictions.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "base.html" %}{% set admin_area=True %}
{% extends "uber/templates/base.html" %}{% set admin_area=True %}
{% block title %}Dietary Restrictions{% endblock %}
{% block backlink %}{% endblock %}
{% block content %}
Expand Down
2 changes: 1 addition & 1 deletion magwest/templates/staffing/shirt_size.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "base.html" %}{% set admin_area=True %}
{% extends "uber/templates/base.html" %}{% set admin_area=True %}
{% block title %}Shirt Size{% endblock %}
{% block backlink %}{% endblock %}
{% block content %}
Expand Down
2 changes: 1 addition & 1 deletion magwest/templates/staffing/volunteer_agreement.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "base.html" %}{% set admin_area=True %}
{% extends "uber/templates/base.html" %}{% set admin_area=True %}
{% block title %}Volunteer Agreement{% endblock %}
{% block backlink %}{% endblock %}
{% block content %}
Expand Down

0 comments on commit fe1e2e5

Please sign in to comment.