forked from cphsolutionslab/ckanext-portalopendatadk
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from datopian/feature/usr_create_restr_org_admin
[org_admin][s]: restricted org admins to create new user
- Loading branch information
Showing
3 changed files
with
93 additions
and
1 deletion.
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
90 changes: 90 additions & 0 deletions
90
ckanext/portalopendatadk/templates/organization/member_new.html
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 |
---|---|---|
@@ -0,0 +1,90 @@ | ||
{% extends "organization/edit_base.html" %} | ||
|
||
{% import 'macros/form.html' as form %} | ||
|
||
{% set user = c.user_dict %} | ||
|
||
{% block subtitle %}{{ _('Edit Member') if user else _('Add Member') }} - {{ super() }}{% endblock %} | ||
|
||
{% block primary_content_inner %} | ||
{% link_for _('Back to all members'), controller='organization', action='members', id=organization.name, class_='btn pull-right', icon='arrow-left' %} | ||
<h1 class="page-heading"> | ||
{% block page_heading %}{{ _('Edit Member') if user else _('Add Member') }}{% endblock %} | ||
</h1> | ||
{% block form %} | ||
<form class="dataset-form form-horizontal add-member-form" method='post'> | ||
<div class="row-fluid"> | ||
<div class="control-group control-medium"> | ||
{% if not user %} | ||
<label class="control-label" for="username"> | ||
{{ _('Existing User') }} | ||
</label> | ||
<span> | ||
{{ _('If you wish to add an existing user, search for their username below.') }} | ||
</span> | ||
{% endif %} | ||
<div class="controls"> | ||
{% if user %} | ||
<input type="hidden" name="username" value="{{ user.name }}" /> | ||
<input id="username" name="username" type="text" value="{{ user.name }}" | ||
disabled="True" class="control-medium"> | ||
{% else %} | ||
<input id="username" type="text" name="username" placeholder="{{ _('Username') }}" | ||
value="" class="control-medium" data-module="autocomplete" | ||
data-module-source="/api/2/util/user/autocomplete?q=?"> | ||
{% endif %} | ||
</div> | ||
</div> | ||
{% if c.userobj.sysadmin %} | ||
<div class="add-member-or"> | ||
{{ _('or') }} | ||
</div> | ||
<div class="control-group control-medium"> | ||
<label class="control-label" for="email"> | ||
{{ _('New User') }} | ||
</label> | ||
<span> | ||
{{ _('If you wish to invite a new user, enter their email address.') }} | ||
</span> | ||
<div class="controls"> | ||
<input id="email" type="email" name="email" placeholder="{{ _('Email address') }}" > | ||
</div> | ||
</div> | ||
{% endif %} | ||
</div> | ||
{% set format_attrs = {'data-module': 'autocomplete'} %} | ||
{{ form.select('role', label=_('Role'), options=c.roles, selected=c.user_role, error='', attrs=format_attrs) }} | ||
<div class="form-actions"> | ||
{% if user %} | ||
<a href="{% url_for controller='organization', action='member_delete', id=c.group_dict.id, user=user.id %}" class="btn btn-danger pull-left" data-module="confirm-action" data-module-content="{{ _('Are you sure you want to delete this member?') }}">{{ _('Delete') }}</a> | ||
<button class="btn btn-primary" type="submit" name="submit" > | ||
{{ _('Update Member') }} | ||
</button> | ||
{% else %} | ||
<button class="btn btn-primary" type="submit" name="submit" > | ||
{{ _('Add Member') }} | ||
</button> | ||
{% endif %} | ||
</div> | ||
</form> | ||
{% endblock %} | ||
{% endblock %} | ||
|
||
{% block secondary_content %} | ||
{{ super() }} | ||
<div class="module module-narrow module-shallow"> | ||
<h2 class="module-heading"> | ||
<i class="fa fa-lg fa-info-circle"></i> | ||
{{ _('What are roles?') }} | ||
</h2> | ||
<div class="module-content"> | ||
{% trans %} | ||
<p><strong>Admin:</strong> Can add/edit and delete datasets, as well as | ||
manage organization members.</p> | ||
<p><strong>Editor:</strong> Can add and edit datasets, but not manage | ||
organization members.</p> | ||
<p><strong>Member:</strong> Can view the organization's private | ||
datasets, but not add new datasets.</p> | ||
{% endtrans %} | ||
</div> | ||
{% endblock %} |
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