| <div id="user-message" class="error"> |
| This student is likely to be accepted by more than one organization. |
| Duplicate proposals listed below are ordered according to the preference indicated |
| by this student. Please use the contact information of the respective organizations |
| in the table given below to resolve this situation. |
| |
| <table id="duplicate-orgs" class="proposal-duplicates"> |
| <tr> |
| <th><strong>Organization Name</strong></th> |
| <th><strong>Organization Administrators</strong></th> |
| <th><strong>Proposal Title</strong></th> |
| </tr> |
| {% for proposal in duplicate_proposals %} |
| <tr> |
| <td><a href="{{ proposal.org_url }}">{{ proposal.org_name }}</a></td> |
| <td> |
| {% for admin in proposal.org_admins %} |
| <a href="mailto:{{ admin.contact.email }}">"{{ admin.public_name }}" <{{ admin.contact.email }}></a>{% if not forloop.last %}, {% endif %} |
| {% endfor %} |
| </td> |
| <td>{{ proposal.title }}</td> |
| </tr> |
| {% endfor %} |
| </table> |
| </div> |