-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
don't ask for password when adding users
- Loading branch information
Showing
2 changed files
with
4 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,6 @@ <h2 class="page-header"><i class="ss-icon">👤</i>Add User | |
</div> | ||
</div> | ||
{% endcomment %} | ||
{% if config.enable_local_users %} | ||
<div class="widget-add-user" style="display:none"> | ||
<form action="{% url 'blue_mgnt:users' %}" enctype="multipart/form-data" method="POST"> | ||
{% csrf_token %} | ||
|
@@ -61,7 +60,6 @@ <h2 class="page-header"><i class="ss-icon">👤</i>Add User | |
</div> | ||
</form> | ||
</div> | ||
{% endif %} | ||
<div class="widget-upload-csv" style="display: none"> | ||
<form action="{% url 'blue_mgnt:users' %}" enctype="multipart/form-data" method="post"> | ||
{% csrf_token %} | ||
|
@@ -91,10 +89,10 @@ <h2 class="page-header"><i class="ss-icon">👤</i>Add User | |
</table> | ||
<div class="csv-note"> | ||
<p>Note: CSV uploads should be comma delimited and need to contain | ||
email address, name, password, and group name which should appear as follows:</p> | ||
email address, name, and group name which should appear as follows:</p> | ||
<p> | ||
<pre>email,name,password,group_name | ||
[email protected],Jane Doe,passworD,Local 20 GB</pre> | ||
<pre>email,name,group_name | ||
[email protected],Jane Doe,Unlimited</pre> | ||
</p> | ||
<p>For additional information, please don't hesitate to reach out to | ||
<a href="mailto:[email protected]">[email protected]</a></p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters