39 lines
956 B
HTML
39 lines
956 B
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin %}
|
|
|
|
{% block title %}Undo RFC Editor state events{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Undo RFC Editor state events</h1>
|
|
|
|
<table class="table table-condensed table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Time</th>
|
|
<th>Document</th>
|
|
<th>Text</th>
|
|
<th>Undo</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{% for e in events %}
|
|
<tr>
|
|
<td>{{ e.time|date:"Y-m-d H:i:s"}}</td>
|
|
<td><a href="{% url "doc_history" e.doc_id %}">{{ e.doc_id }}</a></td>
|
|
<td>{{ e.desc|safe }}</td>
|
|
<td>
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="event" value="{{ e.id }}">
|
|
<input class="btn btn-xs btn-danger" type="submit" value="Remove">
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|