43 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends 'billard/base.html' %}
 | |
| 
 | |
| {% block title %}Location Data{% endblock %}
 | |
| 
 | |
| {% block content %}
 | |
|     <div id="location-selector" class="alert">
 | |
|         <select class="form-control">
 | |
|             <option value="1">Casino 1</option>
 | |
|             <option value="2">Casino 2</option>
 | |
|         </select>
 | |
|     </div>
 | |
| 
 | |
| {% if object_list %}
 | |
|     <h1>Location Data</h1>
 | |
|     <table class="table table-hover">
 | |
|         <tr>
 | |
|             <th>ID</th>
 | |
|             <th>Location</th>
 | |
|             <th>Table</th>
 | |
|             <th>Timestamp</th>
 | |
|             <th>On_Off</th>
 | |
|             <th>Proc</th>
 | |
|             <th>Error</th>
 | |
|         </tr>
 | |
|     {% for location_data in object_list %}
 | |
|         <tr>
 | |
|             <td><a href="{% url 'detail' location_data.id %}">{{ location_data.id }}</a></td>
 | |
|             <td>{{ location_data.location_id }}</td>
 | |
|             <td>{{ location_data.table_no }}</td>
 | |
|             <td>{{ location_data.tst }}</td>
 | |
|             <td>{{ location_data.on_off }}</td>
 | |
|             <td>{{ location_data.processed }}</td>
 | |
|             <td>{{ location_data.error_msg }}</td>
 | |
|         </tr>
 | |
|     {% endfor %}
 | |
|     </table>
 | |
| {% else %}
 | |
|     <p>No data available.</p>
 | |
| {% endif %}
 | |
| {% endblock %}
 | |
| 
 | |
| 
 |