23 lines
535 B
HTML
23 lines
535 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %}
|
||
|
View service: {{ item.id }}
|
||
|
{% endblock title %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h1>View service: {{ item.id }}</h1>
|
||
|
<div class="mb-10">
|
||
|
<div>
|
||
|
<label><b>{{"name" | capitalize }}:</b> {{item.name}}</label>
|
||
|
</div>
|
||
|
<div>
|
||
|
<label><b>{{"description" | capitalize }}:</b> {{item.description}}</label>
|
||
|
</div>
|
||
|
<div>
|
||
|
<label><b>{{"configuration" | capitalize }}:</b> {{item.configuration}}</label>
|
||
|
</div>
|
||
|
<br />
|
||
|
<a href="/services">Back to services</a>
|
||
|
</div>
|
||
|
{% endblock content %}
|