向 Wagtail 仪表板添加按钮

kha*_*hin 4 django wagtail

是否可以在顶部面板上添加一个额外的按钮(按钮),如图所示?

在此处输入图片说明

我在谷歌和这里没有找到任何东西。

Loï*_*ira 11

屏幕截图上不清楚您是使用smodeladmin还是snippets 将这个模型公开给用户,但我会假设是前者。

我不知道允许您将按钮直接添加到标题的钩子,但是模板使用的块应该允许我们只覆盖这部分。

我们可以利用模板的解析顺序并创建templates/modeladmin/app-name/model-name/index.html优先于/modeladmin/index.html. 因此,给定您的应用程序feedler和一个名为的模型Entry/modeladmin/feedler/entry/index.html使用以下内容创建:

{% extends "modeladmin/index.html" %}

{% block header_extra %}
    <a href="#">My New Button</a>
    {{ block.super }}{% comment %}Display the original buttons {% endcomment %}
{% endblock %}
Run Code Online (Sandbox Code Playgroud)

现在你的按钮没有多大作用。要创建将与该模型管理员交互的操作,您需要创建一些按钮/网址/权限助手和一个视图。

假设操作是将对象导出到 CSV 文件。振作起来,前面有很多代码。

在 中/feedler/admin.py,创建按钮/url/权限助手并查看:

from django.contrib.auth.decorators import login_required
from django.urls import reverse
from django.utils.decorators import method_decorator
from django.utils.functional import cached_property
from django.utils.translation import ugettext as _
from wagtail.contrib.modeladmin.helpers import AdminURLHelper, ButtonHelper
from wagtail.contrib.modeladmin.views import IndexView


class ExportButtonHelper(ButtonHelper):
    """
    This helper constructs all the necessary attributes to create a button.
    
    There is a lot of boilerplate just for the classnames to be right :(
    """
    
    export_button_classnames = ['icon', 'icon-download']

    def export_button(self, classnames_add=None, classnames_exclude=None):
        if classnames_add is None:
            classnames_add = []
        if classnames_exclude is None:
            classnames_exclude = []

        classnames = self.export_button_classnames + classnames_add
        cn = self.finalise_classname(classnames, classnames_exclude)
        text = _('Export {}'.format(self.verbose_name_plural.title()))

        return {
            'url': self.url_helper.get_action_url('export', query_params=self.request.GET),
            'label': text,
            'classname': cn,
            'title': text,
        }


class ExportAdminURLHelper(AdminURLHelper):
    """
    This helper constructs the different urls.
    
    This is mostly just to overwrite the default behaviour
    which consider any action other than 'create', 'choose_parent' and 'index'
    as `object specific` and will try to add the object PK to the url
    which is not what we want for the `export` option.
    
    In addition, it appends the filters to the action.
    """

    non_object_specific_actions = ('create', 'choose_parent', 'index', 'export')

    def get_action_url(self, action, *args, **kwargs):
        query_params = kwargs.pop('query_params', None)

        url_name = self.get_action_url_name(action)
        if action in self.non_object_specific_actions:
            url = reverse(url_name)
        else:
            url = reverse(url_name, args=args, kwargs=kwargs)

        if query_params:
            url += '?{params}'.format(params=query_params.urlencode())

        return url

    def get_action_url_pattern(self, action):
        if action in self.non_object_specific_actions:
            return self._get_action_url_pattern(action)

        return self._get_object_specific_action_url_pattern(action)
        

class ExportView(IndexView):
    """
    A Class Based View which will generate 
    """
    
    def export_csv(self):
        data = self.queryset.all()
        response = ...
        return response
    
    
    @method_decorator(login_required)
    def dispatch(self, request, *args, **kwargs):
        super().dispatch(request, *args, **kwargs)
        return self.export_csv()

        
class ExportModelAdminMixin(object):
    """
    A mixin to add to your model admin which hooks the different helpers, the view
    and register the new urls.
    """

    button_helper_class = ExportButtonHelper
    url_helper_class = ExportAdminURLHelper

    export_view_class = ExportView

    def get_admin_urls_for_registration(self):
        urls = super().get_admin_urls_for_registration()
        urls += (
            url(
                self.url_helper.get_action_url_pattern('export'),
                self.export_view,
                name=self.url_helper.get_action_url_name('export')
            ),
        )

        return urls

    def export_view(self, request):
        kwargs = {'model_admin': self}
        view_class = self.export_view_class
        return view_class.as_view(**kwargs)(request)
        
Run Code Online (Sandbox Code Playgroud)

/feedler/wagtail_hooks.py创建和registerModelAdmin

from wagtail.contrib.modeladmin.options import ModelAdmin, modeladmin_register

from .admin import ExportModelAdminMixin
from .models import Entry

class EntryModelAdmin(ExportModelAdminMixin, ModelAdmin):
    model = Entry
    # ...
    
modeladmin_register(EntryModelAdmin)
Run Code Online (Sandbox Code Playgroud)

通过所有这些设置,您应该能够{% include 'modeladmin/includes/button.html' with button=view.button_helper.export_button %}在上面创建的模板中使用。