Skip to content

Commit

Permalink
#1202 naming. subscriber_subscription_plan_card(subscription) -> subs…
Browse files Browse the repository at this point in the history
…criber_subscription_card(subscription)
  • Loading branch information
chrisjsimpson committed Jul 15, 2023
1 parent 893abce commit ba7e19c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions subscribie/blueprints/admin/templates/admin/subscribers.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{% block title %} Subscribers {% endblock %}

{% block body %}
{% from 'macros/subscriber_subscription_plan_card.html' import subscriber_subscription_plan_card %}
{% from 'macros/subscriber_subscription_card.html' import subscriber_subscription_card %}

<h2 class="text-center text-dark mb-3">My Subscribers</h2>

Expand Down Expand Up @@ -83,7 +83,7 @@ <h4>Search...</h4>
<ul class="list-unstyled">
{% for subscription in person.subscriptions %}
<li>
{{ subscriber_subscription_plan_card(subscription) }}
{{ subscriber_subscription_card(subscription) }}
</li>
{% endfor %}
</ul>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% macro subscriber_subscription_plan_card(subscription) -%}
{% macro subscriber_subscription_card(subscription) -%}
<div class="card">
<ul class="list-unstyled px-2">
<li><strong>Title: </strong>
Expand Down

0 comments on commit ba7e19c

Please sign in to comment.