template/registrants.html
changeset 13 2ef7b964dda3
child 19 40a3fa500991
equal deleted inserted replaced
12:10d86ada90c2 13:2ef7b964dda3
       
     1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
       
     2 <html xmlns="http://www.w3.org/1999/xhtml">
       
     3 <head>
       
     4 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
       
     5 <title>Registration list</title>
       
     6 <meta name="keywords" content="" />
       
     7 <meta name="description" content="" />
       
     8 <link href="/workshop/registrations/site-content/base.css" rel="stylesheet" type="text/css" media="screen" />
       
     9 <link href="/workshop/registrations/site-content/forms.css" rel="stylesheet" type="text/css" media="screen" />
       
    10 </head>
       
    11 <body>
       
    12 <div id="header">
       
    13 	<div id="logo">
       
    14 	        <h1>List of Registrants for upcoming workshops</h1>
       
    15 		<h2><a href="http://www.iitb.ac.in/">From FOSSEE Team</a></h2>
       
    16 	</div>
       
    17 </div>
       
    18 <!-- start page -->
       
    19 <div id="page">	
       
    20 	<!-- start content -->	
       
    21 	<div id="content">
       
    22 		<p class="center">
       
    23 		{% block content %}		
       
    24 			<table>
       
    25 			<tr>
       
    26 			<th> SNo </th>	
       
    27 			<th> Name </th>
       
    28 			<th> Email </th>
       
    29 			<th> Phone Number </th>	
       
    30 			<th> Discipline </th>	
       
    31 			<th> Category </th>	
       
    32 			<th> Affiliation </th>
       
    33 			<th> Workshop </th>
       
    34 			<th> Known programing languages </th>
       
    35 			</tr>
       
    36 			{% for registrant in registrants %}
       
    37 			  <tr>
       
    38 			    <td>{{ forloop.counter }}</td>
       
    39 			    <td>{{ registrant.registrant.name }}</td>
       
    40 			    <td>{{ registrant.registrant.email }}</td>
       
    41 			    <td>{{ registrant.registrant.phonenumber }}</td>
       
    42 			    <td>{{ registrant.registrant.discipline }}</td>
       
    43 			    <td>{{ registrant.registrant.category }}</td>
       
    44 			    <td>{{ registrant.registrant.affiliation }}</td>
       
    45 			    <td>{{ registrant.registrant.workshop }}</td>
       
    46 			    <td>{{ registrant.registrant.tools }}</td>
       
    47 			  </tr>
       
    48       {% endfor %}
       
    49 			</table>
       
    50 		{% endblock %}
       
    51 		</p>
       
    52 	</div>
       
    53 	<!-- end content -->	
       
    54 	<div style="clear: both;">&nbsp;</div>
       
    55 </div>
       
    56 <!-- end page -->
       
    57 <div id="footer">	
       
    58 	<p class="credit">Powered by the <a href="http://fossee.in/">FOSSEE</a> group, IITB</p>
       
    59 </div>
       
    60 </body>
       
    61 </html>