2023-03-21 09:50:29 +00:00
|
|
|
{% extends "base.html.j2" %}
|
|
|
|
|
|
|
|
{% block page_content %}
|
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col s12">
|
|
|
|
<h1 id="title">{{ title }}</h1>
|
|
|
|
</div>
|
2023-04-05 11:59:31 +00:00
|
|
|
|
|
|
|
<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>
|
2023-04-12 14:49:04 +00:00
|
|
|
<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>
|
2023-04-05 11:59:31 +00:00
|
|
|
</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>
|
2023-04-12 14:49:04 +00:00
|
|
|
<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>
|
2023-04-05 11:59:31 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-03-21 09:50:29 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock page_content %}
|