diff options
Diffstat (limited to 'tbc/templates')
-rwxr-xr-x | tbc/templates/base.html | 4 | ||||
-rw-r--r-- | tbc/templates/tbc/internship-forms.html | 27 |
2 files changed, 29 insertions, 2 deletions
diff --git a/tbc/templates/base.html b/tbc/templates/base.html index 45e2719..6e970a3 100755 --- a/tbc/templates/base.html +++ b/tbc/templates/base.html @@ -86,10 +86,10 @@ <ul class="dropdown-menu"> <li><a href="#">Python TBC</a></li> <li><a href="http://fossee.in" target="_blank">FOSSEE</a></li> - <li><a href="#" target="_blank">Python Team</a></li> + <li><a href="http://python.fossee.in" target="_blank">Python Team</a></li> </ul> </li> - <li><a href="#">Internship Forms</a></li> + <li><a href="{% url 'tbc:InternshipForms' %}">Internship Forms</a></li> {% if user %} <li class="dropdown"> diff --git a/tbc/templates/tbc/internship-forms.html b/tbc/templates/tbc/internship-forms.html new file mode 100644 index 0000000..5ddf648 --- /dev/null +++ b/tbc/templates/tbc/internship-forms.html @@ -0,0 +1,27 @@ +{% extends "base.html" %} +{% load static %} + +{% block content %} +<center><h2> Internship Forms </h2></center> +<hr> +<p align="justify">Instructions to fill up the forms:</p> +<ol> + <li>Download the appropriate forms from the below given links</li> + <li>Fill only forms and/or portions of forms that are applicable to you</li> + <li>All these forms are to be sent only when you are notified to provide the forms</li> + <li>Note: In receipt form fill sections which have '*' marks only</li> +</ol> +<hr> +<ul> +<li><a href="{% static 'forms/forms_students.zip' %}">Forms for Students</a> +<li><a href="{% static 'forms/forms_professionals.zip' %}">Froms for Professionals/Corporates</a> +</ul> +<hr> +<p align="justify">Mailing address:<br> +Prof. Prabhu Ramachandran<br> +Department of Aerospace Engineering,<br> +IIT Bombay, Mumbai,<br> +INDIA - 400 076<br> +Phone: +91 22 2576 7121<br> +Please write "Textbook Companion" on top of the envelope.</p> +{% endblock %} |