mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
44 lines
1.6 KiB
Django/Jinja
44 lines
1.6 KiB
Django/Jinja
{% extends "base.html.j2" %}
|
|
|
|
{% block page_content %}
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col s12">
|
|
<h1 id="title">{{ title }}</h1>
|
|
</div>
|
|
|
|
<div class="col s12 l4">
|
|
<div class="card hoverable">
|
|
<a href="{{ url_for('.users') }}" style="position: absolute; width: 100%; height: 100%;"></a>
|
|
<div class="card-content">
|
|
<span class="card-title"><i class="material-icons left">group</i>Users</span>
|
|
<p>Edit the individual user accounts. You have the following options:</p>
|
|
<ul>
|
|
<li>- View, edit and delete user accounts</li>
|
|
<li>- View, edit and delete user corpora</li>
|
|
<li>- View, edit and delete user jobs</li>
|
|
<li>- View, edit and delete user added Tesseract models</li>
|
|
<li>- View, edit and delete user added SpaCy models</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col s12 l4">
|
|
<div class="card hoverable">
|
|
<a href="{{ url_for('.corpora') }}" style="position: absolute; width: 100%; height: 100%;"></a>
|
|
<div class="card-content">
|
|
<span class="card-title"><i class="nopaque-icons left">I</i>Corpora</span>
|
|
<p>Edit all Corpora. You have the following options:</p>
|
|
<ul>
|
|
<li>- View, edit and delete corpora</li>
|
|
<li>- View, edit and delete corpus jobs</li>
|
|
<li>- Edit corpus follower roles and the public status of the corpus</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock page_content %}
|