mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
13 lines
297 B
HTML
13 lines
297 B
HTML
|
{% extends "admin/base_site.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<form action="." method="post">
|
||
|
{% csrf_token %}
|
||
|
{{ form.as_p }}
|
||
|
<input type="hidden" name="action" value="activate_selected" />
|
||
|
<input type="submit" name="activate" value="Activate User Key(s)" />
|
||
|
</form>
|
||
|
|
||
|
{% endblock %}
|