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.
|
- {% extends 'base.html' %}
-
- {% block content %}
- <div class="row">
- <div class="col">
- <h1 class="text-center">{% block title %} {{ tool['name'] }} {% endblock %}</h1>
- </div>
- </div>
- <div class="row">
- <div class="col">
- <table class="table table-hover">
- <tbody>
- <tr>
- <th>
- Created:
- </th>
- <td>
- {{ tool['created'] }}
- </td>
- </tr>
- <tr>
- <th>
- Description:
- </th>
- <td>
- {{ tool['description'] }}
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- {% endblock %}
|