Update symposion/templates/sponsorship/_sponsor_link.html
Improved reference format and used pk rather than id - thanks to trbs for the suggestion
This commit is contained in:
parent
2e7f8259d8
commit
8afa17b1c1
1 changed files with 2 additions and 2 deletions
|
@ -2,9 +2,9 @@
|
||||||
{% spaceless %}
|
{% spaceless %}
|
||||||
<a href="{{ sponsor.external_url }}">
|
<a href="{{ sponsor.external_url }}">
|
||||||
{% if dimensions %}
|
{% if dimensions %}
|
||||||
<img id="Sponsor{{ sponsor.id }} src="{% thumbnail sponsor.logo dimensions %}" alt="{{ sponsor.name }}" />
|
<img id="sponsor_{{ sponsor.pk }}" src="{% thumbnail sponsor.logo dimensions %}" alt="{{ sponsor.name }}" />
|
||||||
{% else %}
|
{% else %}
|
||||||
<img id="Sponsor{{ sponsor.id }}" src="{% thumbnail sponsor.logo '150x150' %}" alt="{{ sponsor.name }}" />
|
<img id="sponsor_{{ sponsor.pk }}" src="{% thumbnail sponsor.logo '150x150' %}" alt="{{ sponsor.name }}" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</a>
|
</a>
|
||||||
{% endspaceless %}
|
{% endspaceless %}
|
||||||
|
|
Loading…
Reference in a new issue