blob: ea9bdf31e3562e18f6f16d7cb8132db7037962b9 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
{% extends 'website/templates/base.html' %}
{% load widget_tweaks %}
{% block sidebar %}
{% endblock %}
{% block current %}
Call for Proposals
{% endblock %}
{% block content %}
<div class="row">
<div class="col-md-{% if user.is_authenticated %}6{% else %}8{% endif %}">
<h3 class="garmond">Selected Papers</h3>
<table class="table table-bordered">
<th width=500>Title
<th>Speaker
<tr>
<td>Probabilistic Graphical Models using pgmpy
<td>Ankur Ankan
</tr>
<tr>
<td>Machine Learning Using Shogun Machine Learning Toolbox
<td>Abinash Panda
<tr>
<td>OPEN STEEL DESIGN AND GRAPHICS: A PYTHON-BASED FOSS
<td>Subhrajit Dutta
</tr>
<tr>
<td>Real Time Scene Analytics Using Python
<td>Sreeja Sankaran Nampoothri
</tr>
<tr>
<td>HIGH SPEED REAL TIME BISCUIT INSPECTION SYSTEM
<td>Neethu N J
</tr>
<tr>
<td>Python Powered Scientific Instrumentation Tool
<td>Jithin Bhagavathi
</tr>
<tr>
<td>Closed loop Control of A DC Motor using expEYES with Python
<td>Melvin Chelli
<tr>
<td>Efficiency Model Based On Response Surface Methodology for A 3 Phase Induction Motor Using Python
<td>Rakesh Hirur
</tr>
</table>
<p>
<b>CFP for SciPy India 2014 is closed</b>
</p>
</div> <!-- /.col -->
<div class="col-md-{% if user.is_authenticated %}6{% else %}4{% endif %}">
{% if not request.user.is_authenticated %}
<!-- Nav tabs -->
<ul class="nav nav-tabs" role="tablist">
<li class="active"><a href="#login" role="tab" data-toggle="tab">Login</a></li>
</ul> <!-- /.nav-tabs -->
<!-- Tab panes -->
<div class="tab-content">
<div class="tab-pane active" id="login">
<form id="login-form" action="" method="POST" role="form">{% csrf_token %}
<div id="non-field-errors">
</div>
<div id="wrap_id_username" class="form-group">
<label for="id_username">Username</label>
{% render_field login_form.username class+="form-control" %}
</div>
<div id="wrap_id_password" class="form-group">
<label for="id_username">Password</label>
{% render_field login_form.password class+="form-control" %}
</div>
<input id="login-submit" class="btn btn-default" type="submit" value="Login">
</form>
</div>
</div> <!-- /.tab-content -->
{% else %}
<div class="well">
<span class="label label-default" href="#" id="welcome">Hello {{ request.user }}!</span>
<a class="label label-primary" href="#" id="logout">Logout</a>
<p>
CFP for SciPy India 2014 has been closed.
<br>We are reviewing the proposals received & will soon
announce the list of selected abstracts.
<br>Stay tuned with us.
</p>
</div> <!-- /.well -->
{% endif %}
</div> <!-- /.col -->
</div> <!-- /.row -->
{% endblock %}
|