mirror of
https://github.com/vale981/dirkules
synced 2025-03-05 09:21:38 -05:00
fixed samba html
This commit is contained in:
parent
fbf14def93
commit
22512d154e
1 changed files with 33 additions and 30 deletions
|
@ -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 %}
|
||||||
|
|
Loading…
Add table
Reference in a new issue