Show applied vouchers on attendee registration admin page. Add head title and page title to more areas. Update the dashboard to show warning for empty categories and have button to open voucher page. Fix exception on attendee page when user does not have attendee object.
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			192 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			192 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% if items %}
 | 
						|
  <ul>
 | 
						|
    {% for item in items %}
 | 
						|
      <li>{{ item.quantity }} × {{ item.product }} {{ suffix }}</li>
 | 
						|
    {% endfor %}
 | 
						|
  </ul>
 | 
						|
{% else %}
 | 
						|
  <p>No items.</p>
 | 
						|
{% endif %}
 |