You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 satır
570B

  1. {% extends 'base.html' %}
  2. {% block content %}
  3. <h1>{% block title %} Tools {% endblock %}</h1>
  4. {% for tool in tools %}
  5. <a href="{{ url_for('tool.show_tool', tool_id=tool['id']) }}">
  6. <h2>{{ tool['name'] }}</h2>
  7. </a>
  8. <span class="badge bg-primary">{{ tool['created'] }}</span>
  9. {% if current_user.is_authenticated %}
  10. <a href="{{ url_for('tool.edit_tool', tool_id=tool['id']) }}">
  11. <span class="badge bg-warning">Edit</span>
  12. </a>
  13. {% endif %}
  14. <hr>
  15. {% endfor %}
  16. {% endblock %}