template/submission.html
changeset 17 08a47999f316
child 20 272dced1685b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/template/submission.html	Thu Sep 03 17:31:12 2009 +0530
@@ -0,0 +1,68 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=utf-8" />
+<title>OCR</title>
+<meta name="keywords" content="" />
+<meta name="description" content="" />
+<link href="/style.css" rel="stylesheet" type="text/css" media="screen" />
+<script type="text/javascript" language="JavaScript">
+function check(form) {
+  var ext = form.sourcefile;
+  ext = ext.substring(ext.length-3,ext.length);
+  ext = ext.toLowerCase();
+  if(ext != 'txt') {
+    alert('You selected a .'+ext+
+          ' file; please select a .jpg file instead!');
+    return false; }
+  else
+    return true; }
+</script>
+</head>
+<body>
+<div id="header">
+	<div id="logo">
+		<h1><a href="#">Spoken Tutorials Competition</a></h1>
+		<h2><a href="http://www.iitb.ac.in/">By IITB</a></h2>		
+	</div>	
+</div>
+<!-- start page -->
+<div id="page">	
+	<!-- start content -->	
+	<div id="content">
+		<p class="center">
+		{% block content %}		
+			<table>
+			<tr>
+			<th> Name </th>	
+			<th> Email-id </th>				
+			<th> Language </th>	
+			<th> Age </th>	
+			<th> Phone Number </th>	
+			<th> Category </th>	
+			<th> File </th>	
+			</tr>
+			{% for participant in participants %}
+			  <tr>
+			    <td>{{ participant.name }}</td>
+			    <td>{{ participant.email }}</td>				    	    
+			    <td>{{ participant.language }}</td>			    
+			    <td>{{ participant.phonenumber }}</td>
+			    <td>{{ participant.age }}</td>
+			    <td>{{ participant.category }}</td>
+			    <td>{{ file }}</td>
+			  </tr>
+            {% endfor %}
+			</table>
+		{% endblock %}
+		</p>
+	</div>
+	<!-- end content -->	
+	<div style="clear: both;">&nbsp;</div>
+</div>
+<!-- end page -->
+<div id="footer">	
+	<p class="credit">Powered by the <a href="http://fossee.in/">FOSSEE</a> group, IITB</p>
+</div>
+</body>
+</html>