Parent: [1f5f14] (diff)

Child: [ddf08c] (diff)

Download this file

site_admin_add_subscribers.html    20 lines (18 with data), 574 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
{% set page="add_subscribers" %}
{% extends 'allura:templates/site_admin.html' %}
{% block content %}
<h1>Add Subscribers to Artifact</h1>
<form name="add_subscriber" method="POST">
<table>
<tr>
<td>Username:</td> <td><input name="for_user" type="text" value="{{for_user}}"></td>
</tr>
<tr>
<td>Artifact Url:</td> <td><input name="artifact_url" type="text" value="{{artifact_url}}"></td>
</tr>
<tr>
<td><input type="submit" value="Save"></td>
</tr>
</table>
</form>
{% endblock %}