mock up pages
This commit is contained in:
		
							
								
								
									
										24
									
								
								templates/web/test3.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										24
									
								
								templates/web/test3.html
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,24 @@
 | 
			
		||||
{% extends 'layouts/master.html' %}
 | 
			
		||||
{% block title %}View{% endblock %}
 | 
			
		||||
{% block body %}
 | 
			
		||||
<h1>Contacts</h1>
 | 
			
		||||
<table class="table table-hover">
 | 
			
		||||
	<thead>
 | 
			
		||||
		<tr>
 | 
			
		||||
			<th scope="col">公司名称</th>
 | 
			
		||||
			<th scope="col">咨询时间</th>
 | 
			
		||||
			<th scope="col">咨询主题</th>
 | 
			
		||||
			<td></td>
 | 
			
		||||
		</tr>
 | 
			
		||||
	</thead>
 | 
			
		||||
	<tbody>
 | 
			
		||||
	{% for contact in contacts %}
 | 
			
		||||
		<tr>
 | 
			
		||||
			<td>{{ contact.name }}</td>
 | 
			
		||||
			<td>{{ contact.date }}</td>
 | 
			
		||||
			<td>{{ contact.subject }}</td>
 | 
			
		||||
		</tr>
 | 
			
		||||
	{% endfor %}
 | 
			
		||||
	</tbody>
 | 
			
		||||
</table>
 | 
			
		||||
{% endblock %}
 | 
			
		||||
		Reference in New Issue
	
	Block a user