25 lines
		
	
	
		
			544 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			544 B
		
	
	
	
		
			HTML
		
	
	
	
{% extends "base.html" %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<h2>Welcome!</h2>
 | 
						|
<div class="row">
 | 
						|
	<div class="col-sm-12">
 | 
						|
		We have the User {{ user }}, create a ref for them or choose an existing ref!
 | 
						|
	
 | 
						|
		Are you sure you want to delete this QSO?
 | 
						|
		<form method="post" action="{% url "contest:logDelete" qso.id %}">
 | 
						|
			{% csrf_token %}
 | 
						|
			<table>
 | 
						|
				<tr>
 | 
						|
					<th>QSO</th><td>{{ qso }}</td>
 | 
						|
				</tr>
 | 
						|
			</table>
 | 
						|
			<input type="submit" name="delete" value="yes">
 | 
						|
			<input type="submit" name="delete" value="no">
 | 
						|
 | 
						|
		</form>
 | 
						|
	</div>
 | 
						|
</div>
 | 
						|
{% endblock %}
 | 
						|
 |