From 351492e58870b0a0d947b90f3e70af44b1836299 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Bedna=C5=99=C3=ADk?= <jan.bednarik@gmail.com> Date: Tue, 18 May 2021 23:09:11 +0200 Subject: [PATCH] elections2021: Fix candidate list photo size --- elections2021/templates/elections2021/_candidate_list_item.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elections2021/templates/elections2021/_candidate_list_item.html b/elections2021/templates/elections2021/_candidate_list_item.html index 5a5d7c4b..f0244069 100644 --- a/elections2021/templates/elections2021/_candidate_list_item.html +++ b/elections2021/templates/elections2021/_candidate_list_item.html @@ -2,7 +2,7 @@ <a href="{% pageurl candidate %}" data-href="{% pageurl candidate %}" class="candidate-table-row"> <div class="candidate-table-row__position head-allcaps-heavy-2xs text-right">{{ candidate.number }}</div> <div class="avatar candidate-table-row__avatar"> - {% image candidate.photo fill-40x40 %} + {% image candidate.photo fill-100x100 %} </div> <div class="candidate-table-row__name head-heavy-2xs font-bold">{{ candidate.title }}</div> <div class="candidate-table-row__bio font-condensed">{{ candidate.age }} let, {{ candidate.occupation }}, {{ candidate.city }}</div> -- GitLab