aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat_web/templates/deleted_entity.html
blob: af25da54f134e7cfd39ff09d0d725c745e6a033c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{% extends "base.html" %}
{% block fullbody %}

<div class="ui stackable mobile reversed grid centered">
<div class="one wide column"></div>
<div class="fifteen wide column">
  <h1 class="ui header">Deleted Entity
  <div class="sub header"><code>{{ entity_type }}{{ entity.ident }}</code></div></h1>
</div>
</div>

<div class="ui stackable mobile reversed grid centered">
<div class="one wide column"></div>
<div class="ten wide column" style="font-size: 16px;">

<p>There used to be an entity here, but is has been deleted!

<p>You can view history or revert the change using links to the right.

<br>

</div>
<div class="five wide column">
<div class="ui segment top attached">

<b>Entity Type:</b> {{ entity_type }}
</div><div class="ui segment attached">

<b>Fatcat Bits</b>
<p>State is "{{ entity.state }}". Revision:
<br><small><code>{{ entity.revision }}</code></small>
<br><a href="https://api.{{ config.FATCAT_DOMAIN }}/v0/{{ entity_type }}/{{ entity.ident }}">As JSON object via API</a>

</div>
<div class="two ui buttons bottom attached">
  <a href="/entity/{{ entity.ident }}/edit" class="ui blue button">Edit Metadata</a>
  <a href="/entity/{{ entity.ident }}/history" class="ui button">View History</a>
</div>

</div>
</div>

{% endblock %}