Revision f81d0548 invitations/templates/invitations.html

b/invitations/templates/invitations.html
49 49
<div id="invsent">
50 50

  
51 51
    <h3 class="clearfix">{% trans "Sent invitations" %}
52
        <span>(<img src="/static/invitation_accepted.png" alt="{% trans "Invitation accepted" %}"> = {% trans "Invitation has been accepted" %})</span></h3>
52
        <span>(<img src="/static/invitation_accepted.png" alt="{% trans "Invitation accepted" %}"> = {% trans "Invitation has been accepted" %})</span>
53
        <span>(<img src="/static/invitation_resend.png" width="16" height="16" alt="{% trans "Resend invitation" %}"> = {% trans "Send invitation again" %})</span>
54
    </h3>
53 55
    <div>
54 56
        <ul>
55 57
        {% for inv in invitations %}
56 58
        <li class="clearfix {% if inv.accepted %}accepted{% endif %}">
57 59
                {% if inv.accepted %}
58
                <img src="/static/invitation_accepted.png" alt="{% trans "Invitation accpeted" %}">
60
                <img src="/static/invitation_accepted.png" alt="{% trans "Invitation accepted" %}">
61
                {% else %}
62
                    <span class="resend-invitation" id="inv-{{ inv.id }}">
63
                        <img class="resend-invitation" src="/static/invitation_resend.png" width="16" height="16" alt="{% trans "Resend invitation" %}">
64
                    </span>
59 65
                {% endif %}
60 66
                <span class="name">{{ inv.targetname }}</span> <span class="email">{{ inv.target }}</span>
61 67
            </li>

Also available in: Unified diff