Your IP : 216.73.216.40


Current Path : /var/www/html/kpsingh/website/templates/
Upload File :
Current File : /var/www/html/kpsingh/website/templates/teaching.html

{% extends "base.html" %}
{% load staticfiles %}
{% block title %}Teachings{% endblock%}
{% block head%}
	Courses
	<link rel="stylesheet" type="text/css" href=" {% static 'css/teaching.css'%}">
{% endblock %}
{% block content %}
	{% for yr in year %}
		<h3>{{yr}} - Odd Semester</h3>
		{% for course in courses%}
			{% if course.year == yr and course.sem == 1 %}
				<div id = "crs">
					<a href = {{course.link}} id = "link">{{course.course_name}}</a>
				</div>
			{% endif %}	
		{% endfor %}
		<h3>{{yr}} - Even Semester</h3>
		{% for course in courses%}
			{% if course.year == yr and course.sem == 0 %}
				<div id = "crs">
					<a href = {{course.link}} id = "link">{{course.course_name}} </a>
				</div>
			{% endif %}	
		{% endfor %}
	{% endfor %}
{% endblock %}