diff --git a/src/webapp/templates/quick_curation.html b/src/webapp/templates/quick_curation.html index df60133..f731965 100644 --- a/src/webapp/templates/quick_curation.html +++ b/src/webapp/templates/quick_curation.html @@ -6,19 +6,68 @@ {% block body %} -

Finding top priority curation needs

-

In this demo, we randomly pick 5 classes from the EDAM ontology that need to be curated.

+

Finding quick-to-solve curation needs

+ +

Each section displays up to 8 randomly-picked terms. Refreshing the page will allow to display a new selection.

+ +
+

{{ no_wikipedia_link_topic|length }} EDAM topics with missing wikipedia + links.

+
+ {% for item in random.sample(no_wikipedia_link_operation, 8) %} +{# {% for item in no_wikipedia_link_topic %}#} + {{ item.term }} + {% endfor %} +
+
-

{{ count_no_wikipedia }} EDAM topics with missing wikipedia +

{{ no_wikipedia_link_operation|length }} EDAM operations with missing wikipedia links.

- {% for item in missing_wikipedia %} - {{ item.term }} + {% for item in random.sample(no_wikipedia_link_operation, 8) %} +{# {% for item in no_wikipedia_link_operation %}#} + {{ item.term }} + {% endfor %} +
+ +
+ +
+

{{ no_broad_synonym_topic|length }} EDAM topics with no broad synonyms.

+
+ {% for item in random.sample(no_broad_synonym_topic, 8) %} +{# {% for item in no_wikipedia_link_operation %}#} + {{ item.term }} {% endfor %}
+
+ +
+

{{ no_definition_topic|length }} EDAM topics with no definition.

+
+ {% if no_definition_topic|length < 8 %} + {% for item in no_definition_topic %} + {{ item.term }} + {% endfor %} + {% else %} + {% for item in random.sample(no_broad_synonym_topic, 8) %} + {{ item.term }} + {% endfor %} + {% endif %} +
+
-

17 EDAM topics with no synonyms.

+
+

{{ no_regex_identifier|length }} EDAM hybrid identifiers with missing regex.

+
+ {% for item in random.sample(no_regex_identifier, 8) %} + {{ item.term }} + {% endfor %} +
+
+ +{#

17 EDAM topics with no synonyms.

Topic A Topic B @@ -31,8 +80,8 @@

123 EDAM operations with missing Operation Y Operation Z -

+ #} + - {% endblock %} \ No newline at end of file