33 lines
		
	
	
		
			705 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			705 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "layout.html" %}
 | |
| 
 | |
| {% block content %}
 | |
|   <div class="row">
 | |
|     <div class="col-xs-12">
 | |
|       <h1><strong>Participants</strong></h1>
 | |
|       <table class="table table-striped">
 | |
|         <thead>
 | |
|           <tr>
 | |
|             <th>First name</th>
 | |
|             <th>Last name</th>
 | |
|             <th>Affiliation</th>
 | |
|           </tr>
 | |
|         </thead>
 | |
|         <tbody>
 | |
|           {% for reg in registros %}
 | |
|             <tr>
 | |
|               <td>{{ reg.nombre | title }}</td>
 | |
|               <td>{{ reg.apellido | title }}</td>
 | |
|               <td>{{ reg.afiliacion }}</td>
 | |
|             </tr>
 | |
|           {% endfor %}
 | |
| 
 | |
| 
 | |
|         </tbody>
 | |
|       </table>
 | |
|       </div>
 | |
| 
 | |
|     </div>
 | |
| 
 | |
| 
 | |
| {% endblock %}
 | 
