10000 ci: Merge back `release/4.1.x` (4.1.0rc4) into `develop-4` by fsbraun · Pull Request #7640 · django-cms/django-cms · GitHub
[go: up one dir, main page]

Skip to content

ci: Merge back release/4.1.x (4.1.0rc4) into develop-4 #7640

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Sep 1, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix: Broken page actions menu if CMS_PERMISSIONS is set
  • Loading branch information
fsbraun authored Aug 24, 2023
commit 33f93d63f3f35ead956053512b2ddf3211a3bd25
12 changes: 0 additions & 12 deletions cms/templates/admin/cms/page/tree/actions_dropdown.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,6 @@
<span>{% trans "Advanced settings" %}</span>
</a>
</li>
{% if CMS_PERMISSION %}
<li>
{% if has_change_permissions_permission %}
<a href="{% url opts|admin_urlname:'permissions' page.id %}" title="{% filter escapejs %}{% trans "Permissions" %}{% endfilter %}">
{% else %}
<a href="#" class="cms-pagetree-dropdown-item-disabled">
{% endif %}
<span class="cms-icon cms-icon-lock"></span>
<span>{% trans "Permissions" %}</span>
</a>
</li>
{% endif %}
{% endblock actions %}
<li class="cms-pagetree-dropdown-separator">&nbsp;</li>
<li>
Expand Down
0