* Added an account profile page * Added a button to favourite packages * Implemented models to favourite categories, herds, maintainers but still to implement Signed-off-by: volpino <fox91@anche.no>
		
			
				
	
	
		
			12 lines
		
	
	
		
			196 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			196 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "_base.html" %}
 | 
						|
{% load url from future %}
 | 
						|
 | 
						|
{% block title %}
 | 
						|
  {{ block.super }} - Welcome {{ user }}
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
 | 
						|
{% block content %}
 | 
						|
  <h2>Welcome {{ user }}</h2>
 | 
						|
{% endblock %}
 |