mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-09-22 08:59:39 +02:00
Improve and promote admin panel (#76)
* Improve and promote admin panel (#76) * Customize admin panel texts (#76) * Improve settings structure (#76) * Improve admin list consistency (#76) * Fix redirect URLs (#76) * Add admin tooltip (#76)
This commit is contained in:
@@ -1,17 +1,84 @@
|
|||||||
from django.contrib import admin
|
from django.contrib import admin, messages
|
||||||
|
from django.contrib.admin import AdminSite
|
||||||
|
from django.contrib.auth.admin import UserAdmin
|
||||||
|
from django.contrib.auth.models import User
|
||||||
|
from django.db.models import Count, QuerySet
|
||||||
|
from django.utils.translation import ngettext, gettext
|
||||||
|
from rest_framework.authtoken.admin import TokenAdmin
|
||||||
|
from rest_framework.authtoken.models import Token
|
||||||
|
|
||||||
from bookmarks.models import Bookmark, Tag
|
from bookmarks.models import Bookmark, Tag
|
||||||
|
from bookmarks.services.bookmarks import archive_bookmark, unarchive_bookmark
|
||||||
|
|
||||||
|
|
||||||
|
class LinkdingAdminSite(AdminSite):
|
||||||
|
site_header = 'linkding administration'
|
||||||
|
site_title = 'linkding Admin'
|
||||||
|
|
||||||
|
|
||||||
@admin.register(Bookmark)
|
|
||||||
class AdminBookmark(admin.ModelAdmin):
|
class AdminBookmark(admin.ModelAdmin):
|
||||||
list_display = ('title', 'url', 'date_added')
|
list_display = ('resolved_title', 'url', 'is_archived', 'owner', 'date_added')
|
||||||
search_fields = ('title', 'url', 'tags__name')
|
search_fields = ('title', 'description', 'website_title', 'website_description', 'url', 'tags__name')
|
||||||
list_filter = ('tags',)
|
list_filter = ('owner__username', 'is_archived', 'tags',)
|
||||||
ordering = ('-date_added', )
|
ordering = ('-date_added',)
|
||||||
|
actions = ['archive_selected_bookmarks', 'unarchive_selected_bookmarks']
|
||||||
|
|
||||||
|
def archive_selected_bookmarks(self, request, queryset: QuerySet):
|
||||||
|
for bookmark in queryset:
|
||||||
|
archive_bookmark(bookmark)
|
||||||
|
bookmarks_count = queryset.count()
|
||||||
|
self.message_user(request, ngettext(
|
||||||
|
'%d bookmark was successfully archived.',
|
||||||
|
'%d bookmarks were successfully archived.',
|
||||||
|
bookmarks_count,
|
||||||
|
) % bookmarks_count, messages.SUCCESS)
|
||||||
|
|
||||||
|
def unarchive_selected_bookmarks(self, request, queryset: QuerySet):
|
||||||
|
for bookmark in queryset:
|
||||||
|
unarchive_bookmark(bookmark)
|
||||||
|
bookmarks_count = queryset.count()
|
||||||
|
self.message_user(request, ngettext(
|
||||||
|
'%d bookmark was successfully unarchived.',
|
||||||
|
'%d bookmarks were successfully unarchived.',
|
||||||
|
bookmarks_count,
|
||||||
|
) % bookmarks_count, messages.SUCCESS)
|
||||||
|
|
||||||
|
|
||||||
@admin.register(Tag)
|
|
||||||
class AdminTag(admin.ModelAdmin):
|
class AdminTag(admin.ModelAdmin):
|
||||||
list_display = ('name', 'date_added', 'owner')
|
list_display = ('name', 'bookmarks_count', 'owner', 'date_added')
|
||||||
search_fields = ('name', 'owner__username')
|
search_fields = ('name', 'owner__username')
|
||||||
list_filter = ('owner__username', )
|
list_filter = ('owner__username',)
|
||||||
ordering = ('-date_added', )
|
ordering = ('-date_added',)
|
||||||
|
actions = ['delete_unused_tags']
|
||||||
|
|
||||||
|
def get_queryset(self, request):
|
||||||
|
queryset = super().get_queryset(request)
|
||||||
|
queryset = queryset.annotate(bookmarks_count=Count("bookmark"))
|
||||||
|
return queryset
|
||||||
|
|
||||||
|
def bookmarks_count(self, obj):
|
||||||
|
return obj.bookmarks_count
|
||||||
|
|
||||||
|
def delete_unused_tags(self, request, queryset: QuerySet):
|
||||||
|
unused_tags = queryset.filter(bookmark__isnull=True)
|
||||||
|
unused_tags_count = unused_tags.count()
|
||||||
|
for tag in unused_tags:
|
||||||
|
tag.delete()
|
||||||
|
|
||||||
|
if unused_tags_count > 0:
|
||||||
|
self.message_user(request, ngettext(
|
||||||
|
'%d unused tag was successfully deleted.',
|
||||||
|
'%d unused tags were successfully deleted.',
|
||||||
|
unused_tags_count,
|
||||||
|
) % unused_tags_count, messages.SUCCESS)
|
||||||
|
else:
|
||||||
|
self.message_user(request, gettext(
|
||||||
|
'There were no unused tags in the selection',
|
||||||
|
), messages.SUCCESS)
|
||||||
|
|
||||||
|
|
||||||
|
linkding_admin_site = LinkdingAdminSite()
|
||||||
|
linkding_admin_site.register(Bookmark, AdminBookmark)
|
||||||
|
linkding_admin_site.register(Tag, AdminTag)
|
||||||
|
linkding_admin_site.register(User, UserAdmin)
|
||||||
|
linkding_admin_site.register(Token, TokenAdmin)
|
||||||
|
@@ -52,4 +52,9 @@ h2 {
|
|||||||
// Remove left padding from first pagination link
|
// Remove left padding from first pagination link
|
||||||
.pagination .page-item:first-child a {
|
.pagination .page-item:first-child a {
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Override border color for tab block
|
||||||
|
.tab-block {
|
||||||
|
border-bottom: solid 1px $border-color;
|
||||||
}
|
}
|
@@ -1,6 +1,11 @@
|
|||||||
.settings-page {
|
.settings-page {
|
||||||
section.content-area {
|
section.content-area {
|
||||||
margin-bottom: 2rem;
|
margin-bottom: 2rem;
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
font-size: 1.0rem;
|
||||||
|
margin-bottom: 0.8rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.input-group > input[type=submit] {
|
.input-group > input[type=submit] {
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
<p class="empty-title h5">You have no bookmarks yet</p>
|
<p class="empty-title h5">You have no bookmarks yet</p>
|
||||||
<p class="empty-subtitle">
|
<p class="empty-subtitle">
|
||||||
You can get started by <a href="{% url 'bookmarks:new' %}">adding</a> bookmarks,
|
You can get started by <a href="{% url 'bookmarks:new' %}">adding</a> bookmarks,
|
||||||
<a href="{% url 'bookmarks:settings.index' %}">importing</a> your existing bookmarks or configuring the
|
<a href="{% url 'bookmarks:settings.data' %}">importing</a> your existing bookmarks or configuring the
|
||||||
<a href="{% url 'bookmarks:settings.index' %}#bookmarklet">bookmarklet</a>.
|
<a href="{% url 'bookmarks:settings.integrations' %}">bookmarklet</a>.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
25
bookmarks/templates/settings/api.html
Normal file
25
bookmarks/templates/settings/api.html
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
{% extends "bookmarks/layout.html" %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="settings-page">
|
||||||
|
|
||||||
|
{% include 'settings/nav.html' %}
|
||||||
|
|
||||||
|
<section class="content-area">
|
||||||
|
<h2>API Token</h2>
|
||||||
|
<p>The following token can be used to authenticate 3rd-party applications against the REST API:</p>
|
||||||
|
<div class="form-group">
|
||||||
|
<div class="columns">
|
||||||
|
<div class="column col-6 col-md-12">
|
||||||
|
<input class="form-input" value="{{ api_token }}" disabled>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<p><strong>Please treat this token as you would any other credential.</strong> Any party with access to this
|
||||||
|
token can access and manage all your bookmarks.</p>
|
||||||
|
<p>If you think that a token was compromised you can revoke (delete) it in the <a href="{% url 'admin:authtoken_token_changelist' %}">admin panel</a>. After deleting the token, a new one will be generated when you reload this settings page.</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% endblock %}
|
54
bookmarks/templates/settings/data.html
Normal file
54
bookmarks/templates/settings/data.html
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
{% extends "bookmarks/layout.html" %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="settings-page">
|
||||||
|
|
||||||
|
{% include 'settings/nav.html' %}
|
||||||
|
|
||||||
|
{# Import section #}
|
||||||
|
<section class="content-area">
|
||||||
|
<h2>Import</h2>
|
||||||
|
<p>Import bookmarks and tags in the Netscape HTML format. This will execute a sync where new bookmarks are
|
||||||
|
added and existing ones are updated.</p>
|
||||||
|
<form method="post" enctype="multipart/form-data" action="{% url 'bookmarks:settings.import' %}">
|
||||||
|
{% csrf_token %}
|
||||||
|
<div class="form-group">
|
||||||
|
<div class="input-group col-8 col-md-12">
|
||||||
|
<input class="form-input" type="file" name="import_file">
|
||||||
|
<input type="submit" class="input-group-btn col-2 btn btn-primary" value="Upload">
|
||||||
|
</div>
|
||||||
|
{% if import_success_message %}
|
||||||
|
<div class="has-success">
|
||||||
|
<p class="form-input-hint">
|
||||||
|
{{ import_success_message }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
{% if import_errors_message %}
|
||||||
|
<div class="has-error">
|
||||||
|
<p class="form-input-hint">
|
||||||
|
{{ import_errors_message }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
{# Export section #}
|
||||||
|
<section class="content-area">
|
||||||
|
<h2>Export</h2>
|
||||||
|
<p>Export all bookmarks in Netscape HTML format.</p>
|
||||||
|
<a class="btn btn-primary" href="{% url 'bookmarks:settings.export' %}">Download (.html)</a>
|
||||||
|
{% if export_error %}
|
||||||
|
<div class="has-error">
|
||||||
|
<p class="form-input-hint">
|
||||||
|
{{ export_error }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% endblock %}
|
@@ -1,91 +0,0 @@
|
|||||||
{% extends "bookmarks/layout.html" %}
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
<div class="settings-page">
|
|
||||||
|
|
||||||
{# Import section #}
|
|
||||||
<section class="content-area">
|
|
||||||
<div class="content-area-header">
|
|
||||||
<h2>Import</h2>
|
|
||||||
</div>
|
|
||||||
<p>Import bookmarks and tags in the Netscape HTML format. This will execute a sync where new bookmarks are
|
|
||||||
added and existing ones are updated.</p>
|
|
||||||
<form method="post" enctype="multipart/form-data" action="{% url 'bookmarks:settings.import' %}">
|
|
||||||
{% csrf_token %}
|
|
||||||
<div class="form-group">
|
|
||||||
<div class="input-group col-8 col-md-12">
|
|
||||||
<input class="form-input" type="file" name="import_file">
|
|
||||||
<input type="submit" class="input-group-btn col-2 btn btn-primary" value="Upload">
|
|
||||||
</div>
|
|
||||||
{% if import_success_message %}
|
|
||||||
<div class="has-success">
|
|
||||||
<p class="form-input-hint">
|
|
||||||
{{ import_success_message }}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
{% if import_errors_message %}
|
|
||||||
<div class="has-error">
|
|
||||||
<p class="form-input-hint">
|
|
||||||
{{ import_errors_message }}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
{# Export section #}
|
|
||||||
<section class="content-area">
|
|
||||||
<div class="content-area-header">
|
|
||||||
<h2>Export</h2>
|
|
||||||
</div>
|
|
||||||
<p>Export all bookmarks in Netscape HTML format.</p>
|
|
||||||
<a class="btn btn-primary" href="{% url 'bookmarks:settings.export' %}">Download (.html)</a>
|
|
||||||
{% if export_error %}
|
|
||||||
<div class="has-error">
|
|
||||||
<p class="form-input-hint">
|
|
||||||
{{ export_error }}
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
{% endif %}
|
|
||||||
</section>
|
|
||||||
|
|
||||||
{# Integrations section #}
|
|
||||||
<section class="content-area">
|
|
||||||
<div class="content-area-header">
|
|
||||||
<a id="bookmarklet"><h2>Bookmarklet</h2></a>
|
|
||||||
</div>
|
|
||||||
<p>The bookmarklet is a quick way to add new bookmarks without opening the linkding application
|
|
||||||
first. Here's how it works:</p>
|
|
||||||
<ul>
|
|
||||||
<li>Drag the bookmarklet below into your browsers bookmark bar / toolbar</li>
|
|
||||||
<li>Open the website that you want to bookmark</li>
|
|
||||||
<li>Click the bookmarklet in your browsers toolbar</li>
|
|
||||||
<li>linkding opens in a new window or tab and allows you to add a bookmark for the site</li>
|
|
||||||
<li>After saving the bookmark the linkding window closes and you are back on your website</li>
|
|
||||||
</ul>
|
|
||||||
<p>Drag the following bookmarklet to your browsers toolbar:</p>
|
|
||||||
<a href="javascript: {% include 'bookmarks/bookmarklet.js' %}"
|
|
||||||
class="btn btn-primary">📎 Add bookmark</a>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
{# API token section #}
|
|
||||||
<section class="content-area">
|
|
||||||
<div class="content-area-header">
|
|
||||||
<h2>API Token</h2>
|
|
||||||
</div>
|
|
||||||
<p>The following token can be used to authenticate 3rd-party applications against the REST API:</p>
|
|
||||||
<div class="form-group">
|
|
||||||
<div class="columns">
|
|
||||||
<div class="column col-6 col-md-12">
|
|
||||||
<input class="form-input" value="{{ api_token }}" disabled>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<p><strong>Please treat this token as you would any other credential.</strong> Any party with access to this token can access and manage all your bookmarks.</p>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{% endblock %}
|
|
26
bookmarks/templates/settings/integrations.html
Normal file
26
bookmarks/templates/settings/integrations.html
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
{% extends "bookmarks/layout.html" %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<div class="settings-page">
|
||||||
|
|
||||||
|
{% include 'settings/nav.html' %}
|
||||||
|
|
||||||
|
{# Integrations section #}
|
||||||
|
<section class="content-area">
|
||||||
|
<h2>Bookmarklet</h2>
|
||||||
|
<p>The bookmarklet is a quick way to add new bookmarks without opening the linkding application
|
||||||
|
first. Here's how it works:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Drag the bookmarklet below into your browsers bookmark bar / toolbar</li>
|
||||||
|
<li>Open the website that you want to bookmark</li>
|
||||||
|
<li>Click the bookmarklet in your browsers toolbar</li>
|
||||||
|
<li>linkding opens in a new window or tab and allows you to add a bookmark for the site</li>
|
||||||
|
<li>After saving the bookmark the linkding window closes and you are back on your website</li>
|
||||||
|
</ul>
|
||||||
|
<p>Drag the following bookmarklet to your browsers toolbar:</p>
|
||||||
|
<a href="javascript: {% include 'bookmarks/bookmarklet.js' %}"
|
||||||
|
class="btn btn-primary">📎 Add bookmark</a>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{% endblock %}
|
23
bookmarks/templates/settings/nav.html
Normal file
23
bookmarks/templates/settings/nav.html
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
{% url 'bookmarks:settings.index' as index_url %}
|
||||||
|
{% url 'bookmarks:settings.data' as data_url %}
|
||||||
|
{% url 'bookmarks:settings.integrations' as integrations_url %}
|
||||||
|
{% url 'bookmarks:settings.api' as api_url %}
|
||||||
|
|
||||||
|
<ul class="tab tab-block">
|
||||||
|
<li class="tab-item {% if request.get_full_path == index_url or request.get_full_path == data_url%}active{% endif %}">
|
||||||
|
<a href="{% url 'bookmarks:settings.data' %}">Data</a>
|
||||||
|
</li>
|
||||||
|
<li class="tab-item {% if request.get_full_path == integrations_url %}active{% endif %}">
|
||||||
|
<a href="{% url 'bookmarks:settings.integrations' %}">Integrations</a>
|
||||||
|
</li>
|
||||||
|
<li class="tab-item {% if request.get_full_path == api_url %}active{% endif %}">
|
||||||
|
<a href="{% url 'bookmarks:settings.api' %}">API</a>
|
||||||
|
</li>
|
||||||
|
<li class="tab-item tooltip tooltip-bottom" data-tooltip="The admin panel provides additional features 
 such as user management and bulk operations.">
|
||||||
|
<a href="{% url 'admin:index' %}" target="_blank">
|
||||||
|
<span>Admin</span>
|
||||||
|
<i class="icon icon-share ml-1" style="font-size: 12px"></i>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<br>
|
@@ -19,7 +19,10 @@ urlpatterns = [
|
|||||||
path('bookmarks/<int:bookmark_id>/archive', views.bookmarks.archive, name='archive'),
|
path('bookmarks/<int:bookmark_id>/archive', views.bookmarks.archive, name='archive'),
|
||||||
path('bookmarks/<int:bookmark_id>/unarchive', views.bookmarks.unarchive, name='unarchive'),
|
path('bookmarks/<int:bookmark_id>/unarchive', views.bookmarks.unarchive, name='unarchive'),
|
||||||
# Settings
|
# Settings
|
||||||
path('settings', views.settings.index, name='settings.index'),
|
path('settings', views.settings.data, name='settings.index'),
|
||||||
|
path('settings/data', views.settings.data, name='settings.data'),
|
||||||
|
path('settings/integrations', views.settings.integrations, name='settings.integrations'),
|
||||||
|
path('settings/api', views.settings.api, name='settings.api'),
|
||||||
path('settings/import', views.settings.bookmark_import, name='settings.import'),
|
path('settings/import', views.settings.bookmark_import, name='settings.import'),
|
||||||
path('settings/export', views.settings.bookmark_export, name='settings.export'),
|
path('settings/export', views.settings.bookmark_export, name='settings.export'),
|
||||||
# API
|
# API
|
||||||
|
@@ -15,15 +15,27 @@ logger = logging.getLogger(__name__)
|
|||||||
|
|
||||||
|
|
||||||
@login_required
|
@login_required
|
||||||
def index(request):
|
def data(request):
|
||||||
import_success_message = _find_message_with_tag(messages.get_messages(request), 'bookmark_import_success')
|
import_success_message = _find_message_with_tag(messages.get_messages(request), 'bookmark_import_success')
|
||||||
import_errors_message = _find_message_with_tag(messages.get_messages(request), 'bookmark_import_errors')
|
import_errors_message = _find_message_with_tag(messages.get_messages(request), 'bookmark_import_errors')
|
||||||
application_url = request.build_absolute_uri("/bookmarks/new")
|
return render(request, 'settings/data.html', {
|
||||||
api_token = Token.objects.get_or_create(user=request.user)[0]
|
|
||||||
return render(request, 'settings/index.html', {
|
|
||||||
'import_success_message': import_success_message,
|
'import_success_message': import_success_message,
|
||||||
'import_errors_message': import_errors_message,
|
'import_errors_message': import_errors_message,
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
@login_required
|
||||||
|
def integrations(request):
|
||||||
|
application_url = request.build_absolute_uri("/bookmarks/new")
|
||||||
|
return render(request, 'settings/integrations.html', {
|
||||||
'application_url': application_url,
|
'application_url': application_url,
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
@login_required
|
||||||
|
def api(request):
|
||||||
|
api_token = Token.objects.get_or_create(user=request.user)[0]
|
||||||
|
return render(request, 'settings/api.html', {
|
||||||
'api_token': api_token.key
|
'api_token': api_token.key
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -49,7 +61,7 @@ def bookmark_import(request):
|
|||||||
messages.error(request, 'An error occurred during bookmark import.', 'bookmark_import_errors')
|
messages.error(request, 'An error occurred during bookmark import.', 'bookmark_import_errors')
|
||||||
pass
|
pass
|
||||||
|
|
||||||
return HttpResponseRedirect(reverse('bookmarks:settings.index'))
|
return HttpResponseRedirect(reverse('bookmarks:settings.data'))
|
||||||
|
|
||||||
|
|
||||||
@login_required
|
@login_required
|
||||||
@@ -65,7 +77,7 @@ def bookmark_export(request):
|
|||||||
|
|
||||||
return response
|
return response
|
||||||
except:
|
except:
|
||||||
return render(request, 'settings/index.html', {
|
return render(request, 'settings/data.html', {
|
||||||
'export_error': 'An error occurred during bookmark export.'
|
'export_error': 'An error occurred during bookmark export.'
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@@ -13,13 +13,14 @@ Including another URLconf
|
|||||||
1. Import the include() function: from django.urls import include, path
|
1. Import the include() function: from django.urls import include, path
|
||||||
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
||||||
"""
|
"""
|
||||||
from django.contrib import admin
|
|
||||||
from django.contrib.auth import views as auth_views
|
from django.contrib.auth import views as auth_views
|
||||||
from django.urls import path, include
|
from django.urls import path, include
|
||||||
|
|
||||||
|
from bookmarks.admin import linkding_admin_site
|
||||||
from .settings import ALLOW_REGISTRATION
|
from .settings import ALLOW_REGISTRATION
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
path('admin/', admin.site.urls),
|
path('admin/', linkding_admin_site.urls),
|
||||||
path('login/', auth_views.LoginView.as_view(redirect_authenticated_user=True,
|
path('login/', auth_views.LoginView.as_view(redirect_authenticated_user=True,
|
||||||
extra_context=dict(allow_registration=ALLOW_REGISTRATION)),
|
extra_context=dict(allow_registration=ALLOW_REGISTRATION)),
|
||||||
name='login'),
|
name='login'),
|
||||||
|
Reference in New Issue
Block a user