nopaque/app/templates/services/corpus_analysis.html.j2

46 lines
1.7 KiB
Plaintext
Raw Normal View History

2020-02-07 14:21:59 +00:00
{% extends "nopaque.html.j2" %}
2020-02-25 08:59:49 +00:00
{% set headline = '<i class="material-icons left service" data-service="corpus_analysis" style="font-size: inherit;"></i>Corpus analysis' %}
2020-02-20 09:13:35 +00:00
2020-02-07 14:21:59 +00:00
{% block page_content %}
2020-02-18 14:31:10 +00:00
<div class="col s12 m9 l10">
2020-03-02 09:42:25 +00:00
<p>Nopaque lets you create and upload as many text corpora as you want. It makes use of CQP Query Language, which allows for complex search requests with the aid of metadata and NLP tags. The results can either be displayed as text or abstract visualizations.</p>
<div class="card">
<div class="card-content" id="corpora">
<div class="input-field">
<i class="material-icons prefix">search</i>
<input id="search-corpus" class="search" type="search"></input>
<label for="search-corpus">Search corpus</label>
2020-02-17 10:08:03 +00:00
</div>
2020-03-02 09:42:25 +00:00
<table>
<thead>
<tr>
<th></th>
<th>
<span class="sort" data-sort="title">Title</span>
<span class="sort" data-sort="description">Description</span>
</th>
<th><span class="sort" data-sort="status">Status</span></th>
<th></th>
</tr>
</thead>
<tbody class="list"></tbody>
</table>
<ul class="pagination"></ul>
2020-02-17 10:08:03 +00:00
</div>
2020-03-02 09:42:25 +00:00
<div class="card-action right-align">
<a class="waves-effect waves-light btn" href="{{ url_for('corpora.add_corpus') }}">New corpus<i class="material-icons right">add</i></a>
2020-02-07 14:21:59 +00:00
</div>
</div>
</div>
2020-02-18 14:31:10 +00:00
<div class="col hide-on-small-only m3 l2">
{% include 'services/roadmap.html.j2' %}
</div>
2020-02-07 14:21:59 +00:00
<script>
var corpusList = new RessourceList("corpora", nopaque.corporaSubscribers,
2020-02-12 11:19:54 +00:00
"corpus", {page: 10});
2020-02-07 14:21:59 +00:00
</script>
{% endblock %}