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 Stock plugin to accommodate that.
  • Loading branch information
kitsuta committed Feb 21, 2024
1 parent 8d60de1 commit b85c0f6
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion magstock/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 %}
Tables will be available in our concert tent throughout the weekend for performers' use.
Expand Down
2 changes: 1 addition & 1 deletion magstock/templates/guests/guest_agreement.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "guests/guest_agreement.html" %}
{% extends "uber/templates/guests/guest_agreement.html" %}

{% block guest_text_merch_inner %}
Tables will be available in our concert tent throughout the weekend for guests' use.
Expand Down
2 changes: 1 addition & 1 deletion magstock/templates/magstock/addons.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 %}Parties{% endblock %}
{% block content %}

Expand Down
2 changes: 1 addition & 1 deletion magstock/templates/magstock/campsite_assignments.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 %}Magstock Campsites{% endblock %}
{% block content %}

Expand Down
2 changes: 1 addition & 1 deletion magstock/templates/magstock/food_consumers.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 %}Magstock Food Report{% endblock %}
{% block content %}
<h2 class="center">MAGStock Food Report</h2>
Expand Down
2 changes: 1 addition & 1 deletion magstock/templates/magstock/grouped.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 %}Parties{% endblock %}
{% block content %}

Expand Down
2 changes: 1 addition & 1 deletion magstock/templates/magstock/parking.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 %}Magstock Vehicles{% endblock %}
{% block content %}

Expand Down
2 changes: 1 addition & 1 deletion magstock/templates/preregistration/closed.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 %}Preregistration is now closed{% endblock %}
{% block backlink %}{% endblock %}
{% block content %}
Expand Down
2 changes: 1 addition & 1 deletion magstock/templates/registration/check_in_form.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "registration/check_in_form_base.html" %}
{% extends "uber/templates/registration/check_in_form_base.html" %}
{% block checkin_fields %}
<div class="form-group">
<label for="badge_type" class="col-sm-3 control-label">Pre-ordered Merch</label>
Expand Down
2 changes: 1 addition & 1 deletion magstock/templates/registration/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "registration/index_base.html" %}
{% extends "uber/templates/registration/index_base.html" %}

{% block tableheadings %}
<th><a href="index?order={{ order.camping_type }}">Camping/Cabin Type</a></th>
Expand Down
2 changes: 1 addition & 1 deletion magstock/templates/registration/new.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends "registration/new_base.html" %}
{% extends "uber/templates/registration/new_base.html" %}

{% block tableheadings %}
<th>License Plate</th>
Expand Down
2 changes: 1 addition & 1 deletion magstock/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 magstock/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 b85c0f6

Please sign in to comment.