If an user can approve pending liaisons he/she have access to: - List of pending liaisons he/she can approve - Detailed view of a pending liaison with an approval button Fixes #357 - Legacy-Id: 2466
11 lines
261 B
HTML
11 lines
261 B
HTML
{% extends "liaisons/liaisondetail_detail.html" %}
|
|
{# Copyright The IETF Trust 2007, All Rights Reserved #}
|
|
|
|
{% block content %}
|
|
{{ block.super }}
|
|
|
|
<form method="post" action="">
|
|
<input type="submit" value="Approve" name='do_approval' />
|
|
</form>
|
|
{% endblock %}
|