{% extends "forms.html" %} {% load forms %} {% load applications %} {% block title %}Step 1: Introduction{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

1. Application Introduction

{% if application.applicant.get_short_name %}

Hi {{ application.applicant.get_short_name }},

{% endif %} {% if application.project %} {% if application.created_by == application.applicant %}

You have opened an application to join the following {{ org_name }} project:

{% else %}

{{ application.created_by }} has invited you to join the following {{ org_name }} project:

{% endif %}

Project ID: {{ application.project.pid }}
Title: {{ application.project.name }}

{% else %}

You have started a new application. This will proceed with the following steps.

{% endif %}

An application at {{ org_name }} requires completing the following steps:

{% application_state application %}

You may return to this application at any time to check on its status. Please save the following URL for future use.

{{ link }}

{% if is_secret %}

This URL must remain secret, do not give it to anybody else. Please make sure nobody is already logged into Karaage from your computer before using it.

{% else %}

If you are not already logged in you will be required to log in before using this link.

{% endif %}

Thank you

{% csrf_token %} {% application_actions %}
{% endblock %}