Skip to content

Commit

Permalink
Merge pull request #108 from acdh-oeaw/feature/97-show-reviewed-status
Browse files Browse the repository at this point in the history
Show reviewed status with a double tick
  • Loading branch information
gythaogg authored Jul 15, 2024
2 parents fe0fbea + 24d5dd5 commit fd7f8f8
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions apis_ontology/templates/apis_ontology/tibscholentity_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@
{% load apiscore %}
{% load relationsng %}

{% block card-header-content %}
<div class="row">
<div class="col-md-2">{% include "apis_entities/partials/prev_url.html" %}</div>
<div class="col-md-8">
<h2 style="text-align: center;">
{% include "apis_entities/partials/listview_url.html" %}
{{ object }}
{% if object.review %}
<span class="material-symbols-outlined">
done_all
</span>
{% endif %}
{% block object-actions %}
{% endblock object-actions %}
</h2>
</div>
<div class="col-md-2">{% include "apis_entities/partials/next_url.html" %}</div>
</div>
{% endblock card-header-content %}


{% block col-zero %}
<div class="card">
<div class="card-body">{% include "generic/partials/object_table.html" %}</div>
Expand Down

0 comments on commit fd7f8f8

Please sign in to comment.