datatracker/ietf/templates/sync/notify.html

18 lines
570 B
HTML

{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% block title %}Trigger {{ notification }} sync for {{ org }}{% endblock %}
{% block content %}
{% origin %}
<h1>Trigger {{ notification }} sync for {{ org }}</h1>
<p>
Update the Datatracker with {{ help_text|safe }} at {{ org }}.
</p>
<form method="post">
{% csrf_token %}
<button class="btn btn-primary"
type="submit">
Trigger {{ notification }} sync
</button>
</form>
{% endblock %}