19 lines
420 B
HTML
19 lines
420 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
View server: {{ item.id }}
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
|
<h1>View server: {{ item.id }}</h1>
|
|
<div class="mb-10">
|
|
<div>
|
|
<label><b>{{"name" | capitalize }}:</b> {{item.name}}</label>
|
|
</div>
|
|
<div>
|
|
<label><b>{{"domain" | capitalize }}:</b> {{item.domain}}</label>
|
|
</div>
|
|
<br />
|
|
<a href="/servers">Back to servers</a>
|
|
</div>
|
|
{% endblock content %}
|