blob: 9a175b2c50943b1a286ea740f40dc5d9890ba54e (
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
|
{% extends 'base.html' %}
{% load static %}
<!DOCTYPE HTML>
<html>
<head>
<title>{{ user.get_full_name|default:user.username }}</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css" />
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
</head>
<body>
{% block header %}
<header id="header1">
<h1>SciPy India 2016</h1>
<h2>Abstract Details</h2>
</header>
{% endblock %}
<div id="wrapper">
{% block nav %}
<div id="wrapper">
<div id="navbar-main">
<!-- Fixed navbar -->
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="{% url 'website:home' %}" class="active">Home</a></li>
<li><a href="{% url 'website:view_abstracts' %}" class="active">View Proposals</a></li>
{% if user and not user.is_anonymous %}
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ user.get_full_name|default:user.username }}</a>
<ul class="dropdown-menu">
<li><a href="{% url 'auth:logout'%}?next=/2016/cfp">Logout</a></li>
<li><a href="{% url 'website:cfp' %}">Main Menu</a></li>
</ul>
{% else %}
<li><a href="{% url 'website:cfp' %}" >Login</a></li>
{% endif %}
</ul>
</div>
<!--/.nav-collapse -->
</div>
</div>
{% endblock %}
{% block content %}
<div id="wrapper">
<div id="main">
<section id="content" class="main">
<h3>{{ proposal.user.first_name }} {{ proposal.user.last_name }}</h3>
<p><b>Title: </b> {{ proposal.title }}</p>
<p><b>About Me: </b> {{ proposal.about_me }}</p>
<p><b>Abstract: </b> {{ proposal.abstract }}</p>
{% if proposal.prerequisite %}
<p><b>Prerequisite: </b> {{ proposal.prerequisite }}</p>
{% endif%}
<p><b>Date Created: </b> {{ proposal.date_created }}</p>
{% if proposal.attachment.url %}
<p><b>Attachment: </b>
<a href="{{ proposal.attachment.url }}" class="btn btn-info" target="_blank">{{proposal.attachment}}</a></p>
{% endif %}
<b>Rate: </b></b> {{proposal.rate}} /10
<p><b>Comments: </b>
<hr>
{% for comment in comments %}
<div>
<strong>Comment By:</strong>
{{ comment.user.first_name }} {{ comment.user.last_name }}
<p>{{ comment.comment|safe }}</p>
</div>
<hr>
{% endfor %}
</section>
</div>
<!-- <footer id="footer">
<section id="contact">
<h2>Write to Us</h2>
<p>Feel free to send us an email if you have any questions.</p>
<form id="contact" action="" class="form" role="form" method=POST enctype="multipart/form-data">{% csrf_token %}
<div class="col-md-6 form-group">
<input class="form-control" id="name" name="name" placeholder="Name" type="text" required />
</div>
<div class="col-md-6 form-group">
<input class="form-control" id="email" name="email" placeholder="Email" type="email" required />
</div>
<br><br>
<textarea class="form-control" id="message" name="message" placeholder="Message" rows="5"></textarea>
<br>
<div class = "col-md-3">
<input class="form-control" style="color:black;" readonly type="text" id="a" />
</div>
<div class = "col-md-3">
<input placeholder = "Answer" class="form-control" type="text" id="b"/>
</div>
<div class = "col-md-3">
<button class="button" id = "c" type="submit">Send Message</button>
</div>
</section>
<section>
<h2>Contact Us</h2>
<dl class="alt">
<dt>Address</dt>
<dd>1234 Somewhere Road • Nashville, TN 00000 • USA</dd>
<dt>Phone</dt>
<dd>(000) 000-0000 x 0000</dd>
<dt>Email</dt>
<dd><a style="color:white;" href="#">information@untitled.tld</a></dd>
</dl>
<ul class="icons">
<li><a style="color:white;" href="#" class="icon-twitter alt"><span class="label"></span></a></li>
<li><a style="color:white;" href="#" class="icon-facebook alt"><span class="label"></span></a></li>
<li><a style="color:white;" href="#" class="icon-instagram alt"><span class="label"></span></a></li>
<li><a style="color:white;" href="#" class="icon-github alt"><span class="label"></span></a></li>
<li><a style="color:white;" href="#" class="icon-dribbble alt"><span class="label"></span></a></li>
</ul>
Visit SciPy.in/ <a style="color:white;" href="">2009</a>/
<a style="color:white;" href="">2010</a>/
<a style="color:white;" href="">2011</a>/
<a style="color:white;" href="">2012</a>/
<a style="color:white;" href="">2013</a>/
<a style="color:white;" href="">2014</a>/
<a style="color:white;" href="">2015</a>
</section>
</footer> -->
{% endblock %}
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/js/main.js"></script>
<script>
$(document).ready(function() {
var n1 = Math.round(Math.random() * 10 + 1);
var n2 = Math.round(Math.random() * 10 + 1);
$("#a").val(n1 + " + " + n2 + " = ");
$("#c").click(function() {
if (eval($("#a").val()) == $("#b").val()) {
} else {
alert("Write the correct value ");
}
});
});
</script>
</body>
</html>
|