project/templates/user/dump.html
changeset 237 4cff1f43e4e1
child 239 1973bf1a0a5d
equal deleted inserted replaced
236:29ecd3dd6565 237:4cff1f43e4e1
       
     1 <?xml version="1.0" encoding="iso-8859-1"?>
       
     2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
       
     3                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
       
     4 <html xmlns="http://www.w3.org/1999/xhtml"
       
     5 lang="en" xml:lang="en">
       
     6 <head>
       
     7 <title>Dump</title>
       
     8 <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
       
     9 <meta name="generator" content="Org-mode"/>
       
    10 <meta name="generated" content="2010-11-12 18:35:22 IST"/>
       
    11 <meta name="author" content="amit"/>
       
    12 <meta name="description" content=""/>
       
    13 <meta name="keywords" content=""/>
       
    14 <style type="text/css">
       
    15  <!--/*--><![CDATA[/*><!--*/
       
    16   html { font-family: Times, serif; font-size: 12pt; }
       
    17   .title  { text-align: center; }
       
    18   .todo   { color: red; }
       
    19   .done   { color: green; }
       
    20   .tag    { background-color: #add8e6; font-weight:normal }
       
    21   .target { }
       
    22   .timestamp { color: #bebebe; }
       
    23   .timestamp-kwd { color: #5f9ea0; }
       
    24   p.verse { margin-left: 3% }
       
    25   pre {
       
    26 	border: 1pt solid #AEBDCC;
       
    27 	background-color: #F3F5F7;
       
    28 	padding: 5pt;
       
    29 	font-family: courier, monospace;
       
    30         font-size: 90%;
       
    31         overflow:auto;
       
    32   }
       
    33   table { border-collapse: collapse; }
       
    34   td, th { vertical-align: top; }
       
    35   dt { font-weight: bold; }
       
    36   div.figure { padding: 0.5em; }
       
    37   div.figure p { text-align: center; }
       
    38   textarea { overflow-x: auto; }
       
    39   .linenr { font-size:smaller }
       
    40   .code-highlighted {background-color:#ffff00;}
       
    41   .org-info-js_info-navigation { border-style:none; }
       
    42   #org-info-js_console-label { font-size:10px; font-weight:bold;
       
    43                                white-space:nowrap; }
       
    44   .org-info-js_search-highlight {background-color:#ffff00; color:#000000;
       
    45                                  font-weight:bold; }
       
    46   /*]]>*/-->
       
    47 </style>
       
    48 <script type="text/javascript">
       
    49 <!--/*--><![CDATA[/*><!--*/
       
    50  function CodeHighlightOn(elem, id)
       
    51  {
       
    52    var target = document.getElementById(id);
       
    53    if(null != target) {
       
    54      elem.cacheClassElem = elem.className;
       
    55      elem.cacheClassTarget = target.className;
       
    56      target.className = "code-highlighted";
       
    57      elem.className   = "code-highlighted";
       
    58    }
       
    59  }
       
    60  function CodeHighlightOff(elem, id)
       
    61  {
       
    62    var target = document.getElementById(id);
       
    63    if(elem.cacheClassElem)
       
    64      elem.className = elem.cacheClassElem;
       
    65    if(elem.cacheClassTarget)
       
    66      target.className = elem.cacheClassTarget;
       
    67  }
       
    68 /*]]>*///-->
       
    69 </script>
       
    70 </head>
       
    71 <body>
       
    72 <div id="content">
       
    73 
       
    74 <h1 class="title">Dump</h1>
       
    75 
       
    76 
       
    77 <div id="table-of-contents">
       
    78 <h2>Table of Contents</h2>
       
    79 <div id="text-table-of-contents">
       
    80 <ul>
       
    81 <li><a href="#sec-1">1 Scipy Dump  </a></li>
       
    82 </ul>
       
    83 </div>
       
    84 </div>
       
    85 
       
    86 <div id="outline-container-1" class="outline-2">
       
    87 <h2 id="sec-1"><span class="section-number-2">1</span> Scipy Dump 12 Nov 6:34 </h2>
       
    88 <div class="outline-text-2" id="text-1">
       
    89 
       
    90 
       
    91 <ul>
       
    92 <li>
       
    93 Gender - '&ndash;' in case not specified
       
    94 </li>
       
    95 <li>
       
    96 C - Conference
       
    97 </li>
       
    98 <li>
       
    99 S - Sprints
       
   100 </li>
       
   101 <li>
       
   102 T - Tutorial
       
   103 </li>
       
   104 <li>
       
   105 L - Bring a Laptop
       
   106 
       
   107 <table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
       
   108 <caption></caption>
       
   109 <colgroup><col align="left" /><col align="left" /><col align="left" /><col align="left" /><col align="left" /><col align="left" /><col align="right" /><col align="right" /><col align="right" /><col align="right" />
       
   110 </colgroup>
       
   111 <tbody>
       
   112 <tr><td>first name</sub></td><td>last name</sub></td><td>Gender</td><td>City</td><td>Organization</td><td>Occupation</td><td>C</td><td>S</td><td>T</td><td>L</td></tr>
       
   113 
       
   114 {% for row in rows %}
       
   115 <tr><td>{{ row.first_name }}</td><td>{{ row.last_name }}</td><td>{{ row.sex }}</td><td>{{ row.city }}</td><td>{{ row.organization }}</td><td>{{ row.occupation }}</td><td>{{ row.conference }}</td><td>{{ row.sprint }}</td><td>{{ row.tutorial }}</td><td>{{ row.wifi }}</td></tr>
       
   116 
       
   117 {% endfor %}
       
   118 </table>
       
   119 
       
   120 </li>
       
   121 </ul>
       
   122 </div>
       
   123 </div>
       
   124 </div>
       
   125 </body>
       
   126 </html>