manage_posts.html 1.0 KB

1234567891011121314151617181920212223
  1. {% extends "admin/admin_base.html" %}
  2. {% block admin_content %}
  3. <table class="table table-stripped table-hover">
  4. <thead>
  5. <tr class="success">
  6. <th>Manage Posts | <small><a href="{{ url_for('blog.new_post') }}">New Post</a><small></th>
  7. </tr>
  8. </thead>
  9. <tbody>
  10. {% for post in posts %}
  11. <tr>
  12. <td colspan="2">
  13. <b><a href="{{ url_for('blog.post', id=post.pid) }}">{{ post.title }}</a></b>
  14. </td>
  15. <td colspan="2">
  16. <i class="icon-trash"></i> <a href="{{ url_for('blog.edit_post', id = post.pid) }}">Edit Post</a>
  17. <i class="icon-edit"></i> <a href="{{ url_for('blog.delete_post', id = post.pid) }}">Delete Post</a>
  18. </td>
  19. </tr>
  20. {% endfor %}
  21. </tbody>
  22. </table>
  23. {% endblock %}