Files @ 4272c8f8a8b4
Branch filter:

Location: symposion_app/symposion_project/templates/sponsorship/_sponsor_link.html - annotation

James Tauber
implemented invitations
{% load thumbnail %}
{% spaceless %}
<a href="{{ sponsor.external_url }}">
    {% if dimensions %}
        <img src="{% thumbnail sponsor.logo dimensions %}" alt="{{ sponsor.name }}" />
    {% else %}
        <img src="{% thumbnail sponsor.logo '150x150' %}" alt="{{ sponsor.name }}" />
    {% endif %}
</a>
{% endspaceless %}