JorgenDIF / PP4-Riot-Rythm-Festival

The freedom of music
0 stars 1 forks source link

Bug Resolved: Incorrect Template Variable for Displaying Band Names #69

Open JorgenDIF opened 4 months ago

JorgenDIF commented 4 months ago

Issue:

Band names were not appearing on the webpage as intended.

Root Cause:

The template was using an incorrect variable reference {{band_name}} within a for-loop when it should have been referencing the attribute of the iterated object.

Resolution:

Corrected the template to use {{band.band_name}} to properly access the band_name attribute from each band object in the loop.

Outcome:

The band names are now correctly displayed on the website.