Files @ 79743b711d6f
Branch filter:

Location: symposion_app/pinaxcon/templates/symposion/sponsorship/_wall.html

James Polley
More consistent color-coding for talk status buttons

- there's no btn-default, switch that to btn-primary
- consistently use info for standby, primary for undecided, success
for accept and warn for rejected
1
2
3
4
5
6
7
8
9
{% load sponsorship_tags %}

{% sponsors as sponsors %}

<div class="sponsor-wall">
{% for sponsor in sponsors %}
    {% include "symposion/sponsorship/_sponsor_link.html" with sponsor=sponsor %}
{% endfor %}
</div>