blob: 16d391dd6235e7b747e44640d619511cbff519d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{% extends "layout.html" %}
{% load staticfiles %}
{% block content %}
<div class="container">
<div class="row">
{% if user.is_authenticated %}
{% include 'account/sub_nav.html' %}
{% endif %}
<div class="span12">
<h2>Contact Us</h2>
<table class="table">
<tbody>
<tr>
<td>Prof. Kannan Moudgalya</td>
<td>kannan@iitb.ac.in</td>
</tr>
<tr>
<td>Rupak Rokade</td>
<td>rupakrokade@gmail.com</td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<br>
<h2>SBHS Discussion Forum</h2>
The SBHS Community has maintained a discussion forum and exhaustive documentation to answer basic questions about SBHS and SBHS Vlabs.
</div>
</div>
</div>
{% endblock %}
|