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.

34 lines
925B

  1. {% extends 'base.html' %}
  2. {% block content %}
  3. <div class="row">
  4. <div class="col">
  5. <h1 class="text-center">{% block title %} {{ tool['name'] }} {% endblock %}</h1>
  6. </div>
  7. </div>
  8. <div class="row">
  9. <div class="col">
  10. <table class="table table-hover">
  11. <tbody>
  12. <tr>
  13. <th>
  14. Created:
  15. </th>
  16. <td>
  17. {{ tool['created'] }}
  18. </td>
  19. </tr>
  20. <tr>
  21. <th>
  22. Description:
  23. </th>
  24. <td>
  25. {{ tool['description'] }}
  26. </td>
  27. </tr>
  28. </tbody>
  29. </table>
  30. </div>
  31. </div>
  32. {% endblock %}