509 lines
No EOL
16 KiB
HTML
509 lines
No EOL
16 KiB
HTML
{{ template "_base.html" . }}
|
|
{{ define "title" }}Distillery Admin - {{ .Info.Slug }}{{ end }}
|
|
|
|
{{ define "header"}}
|
|
<p>
|
|
<a class="pure-button" href="/admin/index">Control</a> >
|
|
<a class="pure-button pure-button-primary" href="/admin/instance/{{ .Info.Slug }}">Instance</a>
|
|
</p>
|
|
<p>
|
|
<a class="pure-button" href="/admin/ingredients/{{ .Info.Slug }}">Ingredients</a>
|
|
</p>
|
|
{{ end }}
|
|
|
|
{{ define "content" }}
|
|
<div class="pure-u-1-1">
|
|
<h2 id="overview">Info & Status</h2>
|
|
</div>
|
|
<div class="pure-u-1 pure-u-xl-2-5">
|
|
<div class="padding">
|
|
<div class="overflow">
|
|
<table class="pure-table pure-table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="2">
|
|
Overview
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
Slug
|
|
</td>
|
|
<td>
|
|
<code>{{ .Info.Slug }}</code>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
URL
|
|
</td>
|
|
<td>
|
|
<a href="{{ .Info.URL }}" target="_blank" rel="noopener noreferrer">{{ .Info.URL }}</a>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
Running
|
|
</td>
|
|
<td>
|
|
<code>{{ .Info.Running }}</code>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
Locked
|
|
</td>
|
|
<td>
|
|
<code>{{ .Info.Locked }}</code>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="pure-u-1 pure-u-xl-2-5">
|
|
<div class="padding">
|
|
<div class="overflow">
|
|
<table class="pure-table pure-table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="2">
|
|
Component Settings
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
Directory
|
|
</td>
|
|
<td>
|
|
<code style="overflow: auto;">{{ .Instance.FilesystemBase }}</code>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
SQL DB
|
|
</td>
|
|
<td>
|
|
<code>{{ .Instance.SqlDatabase }}</code>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
SQL User
|
|
</td>
|
|
<td>
|
|
<code>{{ .Instance.SqlUsername }}</code>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
TS Repo
|
|
</td>
|
|
<td>
|
|
<code>{{ .Instance.GraphDBRepository }}</code>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
TS User
|
|
</td>
|
|
<td>
|
|
<code>{{ .Instance.GraphDBUsername }}</code>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="pure-u-1 pure-u-xl-2-5">
|
|
<div class="padding">
|
|
<div class="overflow">
|
|
<table class="pure-table pure-table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="2">
|
|
Build Status
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
Created
|
|
</td>
|
|
<td>
|
|
<code class="date">{{ .Instance.Created.Format "2006-01-02T15:04:05Z07:00" }}</code>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
Last Rebuild <br>
|
|
<button class="remote-action pure-button pure-button-action" data-action="rebuild" data-param="{{ .Instance.Slug }}" data-buffer="1000" data-force-reload="true">Rebuild</button>
|
|
</td>
|
|
<td>
|
|
<code class="date">{{ .Info.LastRebuild.Format "2006-01-02T15:04:05Z07:00" }}</code>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
Last Cron<br>
|
|
<button class="remote-action pure-button pure-button-action" data-action="cron" data-param="{{ .Instance.Slug }}" data-buffer="1000" data-force-reload="true">Cron</button>
|
|
</td>
|
|
<td>
|
|
<code class="date">{{ .Info.LastRebuild.Format "2006-01-02T15:04:05Z07:00" }}</code>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
Last Update <br>
|
|
<button class="remote-action pure-button pure-button-action" data-action="update" data-param="{{ .Instance.Slug }}" data-buffer="1000" data-force-reload="true">Update</button>
|
|
</td>
|
|
<td>
|
|
<code class="date">{{ .Info.LastUpdate.Format "2006-01-02T15:04:05Z07:00" }}</code><br>
|
|
(Automatic: <code>{{ .Instance.AutoBlindUpdateEnabled }}</code>)
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="pure-u-1-1">
|
|
<h2 id="wisski">(Drupal) Users</h2>
|
|
</div>
|
|
|
|
<div class="pure-u-1">
|
|
<div class="padding">
|
|
<div class="overflow">
|
|
<table class="pure-table pure-table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
ID
|
|
</th>
|
|
<th>
|
|
Active
|
|
</th>
|
|
<th>
|
|
Name
|
|
</th>
|
|
|
|
<th>
|
|
Email
|
|
</th>
|
|
<th>
|
|
Roles
|
|
</th>
|
|
<th>
|
|
Created
|
|
</th>
|
|
<th>
|
|
Last Login
|
|
</th>
|
|
<th>
|
|
Action
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ $slug := .Instance.Slug }}
|
|
{{ range $index, $user := .Info.Users }}
|
|
<tr {{ if not $user.Status }}style="color:gray"{{ end }}>
|
|
<td>
|
|
<code>{{ $user.UID }}</code>
|
|
</td>
|
|
<td>
|
|
<code>{{ $user.Status }}</code>
|
|
</td>
|
|
<td>
|
|
<code>{{ $user.Name }}</code>
|
|
</td>
|
|
|
|
<td>
|
|
{{ if $user.Mail }}
|
|
<a href="mailto:{{ $user.Mail }}">{{ $user.Mail }}</a>
|
|
{{ end }}
|
|
</td>
|
|
<td>
|
|
{{ range $role, $unuused := $user.Roles }}
|
|
<code>
|
|
{{ $role }}
|
|
</code>
|
|
{{ end }}
|
|
</td>
|
|
<td>
|
|
<code class="date">{{ $user.Created.Time.Format "2006-01-02T15:04:05Z07:00" }}</code>
|
|
</td>
|
|
<td>
|
|
<code class="date">{{ $user.Login.Time.Format "2006-01-02T15:04:05Z07:00" }}</code>
|
|
</td>
|
|
<td>
|
|
<form action="/admin/api/login" method="POST" target="_blank">
|
|
<input type="hidden" name="slug" value="{{ $slug }}">
|
|
<input type="hidden" name="user" value="{{ $user.Name }}">
|
|
<input type="submit" class="pure-button pure-button-action" value="Login in new window">
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="pure-u-1-1">
|
|
<h2 id="distillery">(Distillery) Users</h2>
|
|
</div>
|
|
|
|
<div class="pure-u-1">
|
|
<div class="padding">
|
|
<div class="overflow">
|
|
<table class="pure-table pure-table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
Distillery User
|
|
</th>
|
|
<th>
|
|
WissKI User
|
|
</th>
|
|
<th>
|
|
Admin
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ range $index, $grant := .Info.Grants }}
|
|
<tr>
|
|
<td>
|
|
<code>{{ $grant.User }}</code>
|
|
</td>
|
|
<td>
|
|
<code>{{ $grant.DrupalUsername }}</code>
|
|
</td>
|
|
<td>
|
|
<code>{{ $grant.DrupalAdminRole }}</code>
|
|
</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="pure-u-1-1">
|
|
<h2 id="wisski">WissKI Data</h2>
|
|
</div>
|
|
|
|
<div class="pure-u-1 pure-u-xl-1-2">
|
|
<div class="padding">
|
|
<div class="overflow">
|
|
<table class="pure-table pure-table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="2">
|
|
Pathbuilders
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{{ range $name, $xml := .Info.Pathbuilders }}
|
|
<tr>
|
|
<td>
|
|
<code>{{ $name }}</code>
|
|
</td>
|
|
<td>
|
|
<code class="pathbuilder" data-name="{{ $name }}">{{ $xml }}</code>
|
|
</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="pure-u-1 pure-u-xl-1-2">
|
|
<div class="padding">
|
|
<div class="overflow">
|
|
<table class="pure-table pure-table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
URI Prefixes
|
|
|
|
{{ if .Info.NoPrefixes }}
|
|
(excluded from resolver)
|
|
{{ end }}
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ range $index, $prefix := .Info.Prefixes }}
|
|
<tr>
|
|
<td>
|
|
<code>{{ $prefix }}</code>
|
|
</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="pure-u-1-1">
|
|
<h2 id="stats">Statistics</h2>
|
|
</div>
|
|
|
|
<div class="pure-u-1 pure-u-xl-1-2">
|
|
<div class="padding">
|
|
<div class="overflow">
|
|
<table class="pure-table pure-table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="5">
|
|
Bundles
|
|
</th>
|
|
</tr>
|
|
<tr>
|
|
<th>
|
|
Label
|
|
</th>
|
|
<th>
|
|
Machine Name
|
|
</th>
|
|
<th>
|
|
Count
|
|
</th>
|
|
<th>
|
|
LastEdit
|
|
</th>
|
|
<th>
|
|
MainBundle
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ range .Info.Statistics.Bundles.Bundles }}
|
|
<tr>
|
|
<td>
|
|
<code>{{ .Label }}</code>
|
|
</td>
|
|
<td>
|
|
<code>{{ .MachineName }}</code>
|
|
</td>
|
|
<td>
|
|
<code>{{ .Count }}</code>
|
|
</td>
|
|
<td>
|
|
<code class="date">{{ .LastEdit.Time.Format "2006-01-02T15:04:05Z07:00" }}</code>
|
|
</td>
|
|
<td>
|
|
<code>{{ .MainBundle }}</code>
|
|
</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="pure-u-1 pure-u-xl-1-2">
|
|
<div class="padding">
|
|
<div class="overflow">
|
|
<table class="pure-table pure-table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="2">
|
|
Triplestore
|
|
</th>
|
|
</tr>
|
|
<tr>
|
|
<th>
|
|
URI
|
|
</th>
|
|
<th>
|
|
Count
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ range .Info.Statistics.Triplestore.Graphs }}
|
|
<tr>
|
|
<td>
|
|
<code>{{ .URI }}</code>
|
|
</td>
|
|
<td>
|
|
<code>{{ .Count }}</code>
|
|
</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="pure-u-1-1">
|
|
<h2 id="ssh">SSH Keys</h2>
|
|
<table class="pure-table pure-table-bordered padding">
|
|
<tbody>
|
|
{{ range .Info.SSHKeys }}
|
|
<tr>
|
|
<td>
|
|
<code>{{ . }}</code>
|
|
</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="pure-u-1-1">
|
|
<h2 id="snapshots">Snapshots</h2>
|
|
<p>
|
|
<button class="remote-action pure-button pure-button-action" data-action="snapshot" data-param="{{ .Instance.Slug }}" data-buffer="1000" data-force-reload="true">Take a snapshot</button>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="pure-u-1">
|
|
<table class="pure-table pure-table-bordered padding">
|
|
<thead>
|
|
<tr>
|
|
<th>Path</th>
|
|
<th>Created</th>
|
|
<th>Packed</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ range .Info.Snapshots }}
|
|
<tr>
|
|
<td>
|
|
<code class="path">{{ .Path }}</code>
|
|
</td>
|
|
<td>
|
|
<code class="date">{{ .Created.Format "2006-01-02T15:04:05Z07:00" }}</code>
|
|
</td>
|
|
<td>
|
|
{{ .Packed }}
|
|
</td>
|
|
</tr>
|
|
{{ end}}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{{ end }} |