Files @ 79743b711d6f
Branch filter:

Location: symposion_app/pinaxcon/templates/symposion/emails/teams_user_applied/message.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
{% load i18n %}
{% blocktrans with team_name=team team_url=team.get_absolute_url site_name=current_site.name site_url=current_site username=user.username %}
    <p>
        User "{{ username }}" has applied to join <b>{{ team_name }}</b> on {{ site_name }}.
    </p>

    <p>
        To accept this application and see any other pending applications, visit the following url:
        <a href="http://{{ site_url }}{{ team_url }}">http://{{ site_url }}{{ team_url }}</a>
    </p>
{% endblocktrans %}