modified: templates/board.html modified: templates/profil.html modified: templates/up_up.html modified: views/blog.py modified: views/profil.py
		
			
				
	
	
		
			34 lines
		
	
	
		
			756 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			756 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'up_squelette.html' %}
 | 
						|
 | 
						|
 | 
						|
{% block main %}
 | 
						|
 | 
						|
 | 
						|
 | 
						|
{% for post in posts %}
 | 
						|
{% if post.nom != None %}
 | 
						|
<div class="well">
 | 
						|
    <div class="row">
 | 
						|
 | 
						|
        <div class="col-sm-2">
 | 
						|
            <img src="/profil/{{post.author}}/{{ post.avatar }}" height="100" width="100" class="img-rounded" alt=""/><br><br>
 | 
						|
            <p>{% if post.author != None %}{{ post.author }} {%endif%} <br />{% if post.prenom != None %}{{ post.prenom }}{%endif%} <br/>{% if post.age != None %}{{ post.age }} ans {%endif%}<br /></p>
 | 
						|
        </div>
 | 
						|
 | 
						|
        <div class="col-sm-9">
 | 
						|
 | 
						|
                <h6>{{ post.time }}</h6>
 | 
						|
                <h2>{{ post.title }}</h2>
 | 
						|
 | 
						|
                {{ post.content|safe }}
 | 
						|
 | 
						|
 | 
						|
        </div>
 | 
						|
 | 
						|
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
{% endif %}
 | 
						|
{% endfor %}
 | 
						|
{% endblock %}
 |