{% extends 'base.html' %} {% block content %}

{% block title %} Tools {% endblock %}

{% for tool in tools %}

{{ tool['name'] }}

{{ tool['created'] }} {% if current_user.is_authenticated %} Edit {% endif %}
{% endfor %} {% endblock %}