fixed samba html

This commit is contained in:
Daniel 2019-09-25 19:30:44 +02:00
parent fbf14def93
commit 22512d154e

View file

@ -1,39 +1,42 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block title %}Dashboard{% endblock %} {% block title %}Samba{% endblock %}
{% block head %} {% block head %}
{{ super() }} {{ super() }}
{% endblock %} {% endblock %}
{% block body %} {% block body %}
<a href="{{ url_for('samba_global') }}"> <div class="topspacer"></div>
<div class="ui primary labeled icon button"> <div class="ui container">
<i class="plus icon"></i> Samba Global conf <a href="{{ url_for('samba_global') }}">
</div> <div class="ui primary labeled icon button">
</a> <i class="edit icon"></i> Samba global
<a href="{{ url_for('samba_add') }}"> </div>
<div class="ui primary labeled icon button"> </a>
<i class="plus icon"></i> Samba add <a href="{{ url_for('samba_add') }}">
</div> <div class="ui primary labeled icon button">
</a> <i class="plus icon"></i> Samba add
<table class="ui celled fixed table"> </div>
<thead> </a>
<tr> <table class="ui celled fixed table">
<th>Name</th> <thead>
<th>Schreibzugriff</th>
<th>Papierkorb</th>
<th>BtrFS Optimierungen</th>
</tr>
</thead>
<tbody>
{% for share in shares %}
<tr> <tr>
<td>{{ share.name }}</td> <th>Name</th>
<td>{{ share.writeable }}</td> <th>Schreibzugriff</th>
<td>{{ share.recycling }}</td> <th>Papierkorb</th>
<td>{{ share.btrfs }}</td> <th>BtrFS Optimierungen</th>
</tr> </tr>
</thead>
{% endfor %} <tbody>
</tbody> {% for share in shares %}
</table> <tr>
<td>{{ share.name }}</td>
<td>{{ share.writeable }}</td>
<td>{{ share.recycling }}</td>
<td>{{ share.btrfs }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %} {% endblock %}