1
Fork 0

Rename id to mod_id for clarity.

This commit is contained in:
Bauke 2023-01-08 12:55:11 +01:00
parent aa6da0069b
commit 9bfc8477be
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,8 @@
{% if let Some(mods) = speedrun.mods %}
<h2>Mods</h2>
<ul>
{% for id in mods %}
{% let (mod_link, mod_title) = id|drg_mod %}
{% for mod_id in mods %}
{% let (mod_link, mod_title) = mod_id|drg_mod %}
<li>
<a href="{{ mod_link }}" target="_blank">{{ mod_title }}</a>
</li>