Skip to content

Commit

Permalink
[Fixes #10251] Review geonode management command set_layers_permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiagiupponi committed Nov 4, 2022
1 parent 5b2f2ce commit 43e4529
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<div class="page-header">
<h2 class="page-title">{% trans "Batch Edit" %}</h2>
</div>
<form action="/{{ model|lower }}/layer/permission/" method="post">
<form action="/{{ model|lower }}/dataset/permission/" method="post">
{% csrf_token %}
{{ form|as_bootstrap }}
<div>
Expand Down
2 changes: 1 addition & 1 deletion geonode/people/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@
url(r'^forgotname', views.forgot_username, name='forgot_username'),
url(r'^autocomplete/$',
login_required(ProfileAutocomplete.as_view()), name='autocomplete_profile'),
url(r'^layer/permission/$',
url(r'^dataset/permission/$',
SetUserLayerPermission.as_view(), name='set_user_dataset_permissions'),
]

0 comments on commit 43e4529

Please sign in to comment.