{% extends 'base.html' %} {% block content %} <div class="row"> <div class="col"> <h1 class="text-center">{% block title %} {{ tool['name'] }} {% endblock %}</h1> </div> </div> {% if current_user.is_authenticated %} <div class="row text-center py-3"> <a href="{{ url_for('tool.edit_tool', tool_id=tool['id']) }}"> <span class="badge bg-dark">Edit</span> </a> </div> {% endif %} <div class="row"> <div class="col"> <table class="table table-hover"> <tbody> <tr> <th> Created: </th> <td> {{ tool['created'].strftime("%Y-%m-%d %H:%M") }} UTC </td> </tr> <tr> <th> Description: </th> <td> {{ tool['description'] }} </td> </tr> <tr> <th> Project page: </th> <td> {{ tool['projectUrl'] }} </td> </tr> <tr> <th> Code repository: </th> <td> {{ tool['repositoryUrl'] }} </td> </tr> <tr> <th> Expertise required to use: </th> <td> {{ tool['expertiseToUse'] }} </td> </tr> <tr> <th> Expertise required to self-host: </th> <td> {{ tool['expertiseToHost'] }} </td> </tr> <tr> <th> Technical dependencies: </th> <td> {{ tool['dependencies'] }} </td> </tr> <tr> <th> Import / ingest formats: </th> <td> {{ tool['ingestFormats'] }} </td> </tr> <tr> <th> Output formats: </th> <td> {{ tool['outputFormats'] }} </td> </tr> <tr> <th> Platform status: </th> <td> {{ tool['status'] }} </td> </tr> </tbody> </table> </div> </div> {% endblock %}