From f1ae1e9679e7c59e47df90cb23a1e065967154e3 Mon Sep 17 00:00:00 2001 From: Pedro Carolina Date: Tue, 18 Apr 2023 09:42:34 +0100 Subject: [PATCH] Remove hardcoded value Use the real 'meetup_item' location --- meetups/templates/meetups/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meetups/templates/meetups/index.html b/meetups/templates/meetups/index.html index 94024e9..d7832ef 100644 --- a/meetups/templates/meetups/index.html +++ b/meetups/templates/meetups/index.html @@ -21,9 +21,9 @@

Upcoming Meetups

    {% for meetup_item in meetups %} - {% include 'meetups/includes/meetup-item.html' with title=meetup_item.title image=meetup_item.image.url location='New York' slug=meetup_item.slug %} + {% include 'meetups/includes/meetup-item.html' with title=meetup_item.title image=meetup_item.image.url location=meetup_item.location slug=meetup_item.slug %} {% endfor %}
{% endblock %} - \ No newline at end of file +