45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'up_squelette.html' %}
 | 
						|
	
 | 
						|
	
 | 
						|
{% block main %}
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 | 
						|
<div class="row">
 | 
						|
  <div class="col-md-12">
 | 
						|
    <h2> Vos articles de blog </h2>
 | 
						|
    <table class="table" >
 | 
						|
      <thead>
 | 
						|
        <tr>
 | 
						|
          <th>Titre  <span class="badge">{{ nb_articles }}</span></th>
 | 
						|
	  <th> Créé le : </th>
 | 
						|
	  <th> Dernière modification </th>
 | 
						|
	  <th> status </th>
 | 
						|
	  <th></th>
 | 
						|
          <th></th>
 | 
						|
	  <th></th>
 | 
						|
        </tr>
 | 
						|
      </thead>
 | 
						|
      <tbody style="text-align: left;">
 | 
						|
        
 | 
						|
        {% for article in list_posts %}
 | 
						|
        <tr>
 | 
						|
          <td>{{ article.title }}</td>
 | 
						|
	  <td>{{ article.time }}</td>
 | 
						|
	  <td>{{ article.last_updated }} </td>
 | 
						|
	  <td>{{ article.status }}</td>
 | 
						|
          <td><a href="{{ url_for('blog.edit', title=article.title) }}"><button type="button" class="btn btn-sm btn-info"> Editer </button></a></td>
 | 
						|
          <td><a href="{{ url_for('blog.delete', title=article.title) }}"><button type="button" class="btn btn-sm btn-danger">Supprimer</button></a></td>
 | 
						|
	  <td><a href="{{ url_for('blog.edit', title=article.title) }}"><button type="button" class="btn btn-sm btn-success"> Publier </button></a></td>
 | 
						|
	</tr>
 | 
						|
        {% endfor %}
 | 
						|
      </tbody>
 | 
						|
    </table>
 | 
						|
    
 | 
						|
  </div>
 | 
						|
 | 
						|
</div>
 | 
						|
{% endblock %}
 |