14 lines
409 B
HTML
14 lines
409 B
HTML
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% extends "base.html" %}
|
|
{% load origin %}
|
|
{% origin %}
|
|
{% block title %}Track document {{ name }}{% endblock %}
|
|
{% block content %}
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<p>
|
|
Add {{ name }} to the list?
|
|
</p>
|
|
<input type="submit" class="btn btn-primary" value="Track document">
|
|
</form>
|
|
{% endblock %} |