{% if perms.attendance.change_studentattendance %}
Edit {% endif %}
{% for year in years %}
{% if forloop.first %}
{{ year }}
{% else %}
{% endif %}
Total absent: {{ year.attendance_absense }}
{% if year.attendance_absense_with_half %}
({{ year.attendance_absense_with_half }} with half days)
{% endif %}
Total tardy: {{ year.attendance_tardy }}
Total present and on time: {{ year.present }} (of {{ year.total }} school days)
Date |
Status |
Notes |
{% for attendance in year.attendances %}
{{ attendance.date }} | {{ attendance.status }} | {{ attendance.notes }} |
{% endfor %}
{% endfor %}
{% endif %}
{% if student_interactions %}
{% if perms.work_study.change_studentinteraction %}
Edit {% endif %}
{% for student_interaction in student_interactions %}
Type {{ student_interaction.type }} Reported by: {{ student_interaction.reported_by }} Date: {{ student_interaction.date }}
{{ student_interaction.comments }}
{% endfor %}
{% endif %}
{% if 'ecwsp.alumni' in settings.INSTALLED_APPS and student.alumni %}
{% with alumni=student.alumni %}
{% if perms.alumni.change_alumni %}
Edit
{% endif %}
Current college |
{{ alumni.college }} {% if alumni.graduated %} (Graduated {{ alumni.graduation_date }}) {% endif %} |
{% for email in alumni.alumniemail_set.all %}
Email {{ email.type }} |
{{ email }} |
{% endfor %}
{% for number in alumni.alumniphonenumber_set.all %}
Phone number {{ number.type }} |
{{ number }} |
{% endfor %}
Notes
{% for note in alumni.alumninote_set.all %}
{{ note.category }} {% if note.user %} - {% endif %} {{ note.user }} - {{ note.date }}
{{ note.note|safe }}
|
{% endfor %}
{% if perms.alumni.add_alumninote %}
Quick add note
|
{% endif %}
{% endwith %}
{% endif %}
{% if 'ecwsp.counseling' in settings.INSTALLED_APPS %}
{% if perms.counseling.change_studentmeeting %}
Edit {% endif %}
{% for meeting in student.student_meeting_set.all %}
-
{{ meeting.date }}: {{ meeting }}
{% if perms.counseling.change_studentmeeting %}
- Edit
{% endif %}
{% if perms.counseling.change_studentmeeting %}
{{ meeting.notes|safe }}
{{ meeting.follow_up_action.all }}
{{ meeting.follow_up_notes }}
{% if meeting.file %}
{{ meeting.file }}
{% endif %}
{% else %}
Details not shown
{% endif %}
{% endfor %}
{% endif %}
{% if 'ecwsp.admissions' in settings.INSTALLED_APPS and student.appl_student %}
{% with appl=student.appl_student %}
{% if perms.admissions.change_applicant %}
Edit {% endif %}
Feeder school | {{ appl.present_school }} |
Ethnicity | {{ appl.ethnicity }} |
Religion | {{ appl.religion }} |
Elementary graduation year | {{ appl.elem_grad_yr }} |
High school graduation year | {{ appl.hs_grad_yr }} |
Total income | {{ appl.total_income }} |
Adjusted available income | {{ appl.adjusted_available_income }} |
Calculated payment | {{ appl.calculated_payment }} |
{% endwith %}
{% endif %}
{% if 'ecwsp.volunteer_track' in settings.INSTALLED_APPS %}
{% if perms.volunter_track.change_volunteer and student.voluneer %}
Edit {% endif %}
{% for volunteer_site in student.volunteer.volunteersite_set.all %}
-
{{ volunteer_site }}
{% if perms.volunteer_track.change_volunteer_site %}
- Edit
{% endif %}
Hours: {{ volunteer_site.hours_at_site }}
{{ volunteer_site.job_description }}
{% endfor %}
{% if perms.volunteer_track.change_studentmeeting %}
Add New
{% endif %}
{% endif %}
{% if 'ecwsp.work_study' in settings.INSTALLED_APPS %}
{% if perms.work_study.change_studentworker and student.studentworker %}
Edit
{% endif %}
Current placement: {{ student.studentworker.placement }}
Work study coordinator: {{ student.studentworker.cra }}
Supervisor contact infomation
{% if supervisors %}
{% for supervisor in supervisors %}
{% if supervisor == student.studentworker.primary_contact %}
- {{ supervisor }} - {{ supervisor.phone }}
{% else %}
- {{ supervisor }} - {{ supervisor.phone }}
{% endif %}
{% endfor %}
{% endif %}
{% if company_histories %}
History
{% for history in company_histories %}
- Left {{ history.placement }} on {{ history.date }}
{% endfor %}
{% endif %}
Company |
Date |
Notes |
|
{% for visit in clientvisits %}
{{ visit.company }} | {{ visit.date }} | {{ visit.notes }} |
See more about this visit |
{% endfor %}
{% if timesheets %}
{% endif %}
{% endif %}
{% if tests %}
{% for test in tests %}
{{ test.name }}
{% endfor %}
{% endif %}
{% endif %}
{% endblock %}