nixin-farm/nixin_farm_ssr/assets/views/server/show.html

20 lines
420 B
HTML
Raw Normal View History

{% 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 %}