| {% if not has_profile or is_student %} |
| <h3>Students</h3> |
| <p id="block-apply-text-action" class="description">Registration is open</p> |
| {% if login_link %} |
| <p id="block-apply-text-action" class="action"> |
| <a href="{{ login_link }}">Log in</a> |
| </p> |
| with your Google account to begin. |
| {% elif has_profile and not has_form %} |
| <p id="block-apply-text-action" class="action"> |
| <a href="{{ student_form_url }}">Submit form</a> |
| </p> |
| {% elif has_profile %} |
| {% if not enrollment_form_submitted %} |
| <p id="block-apply-text-action" class="action"> |
| <a href="{{ enrollment_form_url }}">Submit enrollment from</a> |
| </p> |
| before you can submit proposals. You can read more about the proof of enrollment in the FAQ document. |
| {% else %} |
| <p id="block-apply-text-action" class="action"> |
| <a href="{{ proposal_url }}">Submit proposal</a> |
| </p> |
| {% endif %} |
| {% else %} |
| <p id="block-apply-text-action" class="action"> |
| <a href="{{ student_profile_url }}">Create profile</a> |
| </p> |
| before you can submit your forms and proposals. |
| {% endif %} |
| {% endif %} |
| |
| |