当前位置: 首页>>代码示例>>Python>>正文


Python JavaScriptCatalog.as_view方法代码示例

本文整理汇总了Python中django.views.i18n.JavaScriptCatalog.as_view方法的典型用法代码示例。如果您正苦于以下问题:Python JavaScriptCatalog.as_view方法的具体用法?Python JavaScriptCatalog.as_view怎么用?Python JavaScriptCatalog.as_view使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在django.views.i18n.JavaScriptCatalog的用法示例。


在下文中一共展示了JavaScriptCatalog.as_view方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: password_change

# 需要导入模块: from django.views.i18n import JavaScriptCatalog [as 别名]
# 或者: from django.views.i18n.JavaScriptCatalog import as_view [as 别名]
def password_change(self, request, extra_context=None):
        """
        Handle the "change password" task -- both form display and validation.
        """
        from django.contrib.admin.forms import AdminPasswordChangeForm
        from django.contrib.auth.views import PasswordChangeView
        url = reverse('admin:password_change_done', current_app=self.name)
        defaults = {
            'form_class': AdminPasswordChangeForm,
            'success_url': url,
            'extra_context': dict(self.each_context(request), **(extra_context or {})),
        }
        if self.password_change_template is not None:
            defaults['template_name'] = self.password_change_template
        request.current_app = self.name
        return PasswordChangeView.as_view(**defaults)(request) 
开发者ID:reBiocoder,项目名称:bioforum,代码行数:18,代码来源:sites.py

示例2: logout

# 需要导入模块: from django.views.i18n import JavaScriptCatalog [as 别名]
# 或者: from django.views.i18n.JavaScriptCatalog import as_view [as 别名]
def logout(self, request, extra_context=None):
        """
        Log out the user for the given HttpRequest.

        This should *not* assume the user is already logged in.
        """
        from django.contrib.auth.views import LogoutView
        defaults = {
            'extra_context': dict(
                self.each_context(request),
                # Since the user isn't logged out at this point, the value of
                # has_permission must be overridden.
                has_permission=False,
                **(extra_context or {})
            ),
        }
        if self.logout_template is not None:
            defaults['template_name'] = self.logout_template
        request.current_app = self.name
        return LogoutView.as_view(**defaults)(request) 
开发者ID:reBiocoder,项目名称:bioforum,代码行数:22,代码来源:sites.py

示例3: password_change

# 需要导入模块: from django.views.i18n import JavaScriptCatalog [as 别名]
# 或者: from django.views.i18n.JavaScriptCatalog import as_view [as 别名]
def password_change(self, request, extra_context=None):
        """
        Handle the "change password" task -- both form display and validation.
        """
        from django.contrib.admin.forms import AdminPasswordChangeForm
        from django.contrib.auth.views import PasswordChangeView
        url = reverse('admin:password_change_done', current_app=self.name)
        defaults = {
            'form_class': AdminPasswordChangeForm,
            'success_url': url,
            'extra_context': {**self.each_context(request), **(extra_context or {})},
        }
        if self.password_change_template is not None:
            defaults['template_name'] = self.password_change_template
        request.current_app = self.name
        return PasswordChangeView.as_view(**defaults)(request) 
开发者ID:PacktPublishing,项目名称:Hands-On-Application-Development-with-PyCharm,代码行数:18,代码来源:sites.py

示例4: logout

# 需要导入模块: from django.views.i18n import JavaScriptCatalog [as 别名]
# 或者: from django.views.i18n.JavaScriptCatalog import as_view [as 别名]
def logout(self, request, extra_context=None):
        """
        Log out the user for the given HttpRequest.

        This should *not* assume the user is already logged in.
        """
        from django.contrib.auth.views import LogoutView
        defaults = {
            'extra_context': {
                **self.each_context(request),
                # Since the user isn't logged out at this point, the value of
                # has_permission must be overridden.
                'has_permission': False,
                **(extra_context or {})
            },
        }
        if self.logout_template is not None:
            defaults['template_name'] = self.logout_template
        request.current_app = self.name
        return LogoutView.as_view(**defaults)(request) 
开发者ID:PacktPublishing,项目名称:Hands-On-Application-Development-with-PyCharm,代码行数:22,代码来源:sites.py

示例5: password_change

# 需要导入模块: from django.views.i18n import JavaScriptCatalog [as 别名]
# 或者: from django.views.i18n.JavaScriptCatalog import as_view [as 别名]
def password_change(self, request, extra_context=None):
        """
        Handles the "change password" task -- both form display and validation.
        """
        from django.contrib.admin.forms import AdminPasswordChangeForm
        from django.contrib.auth.views import PasswordChangeView
        url = reverse('admin:password_change_done', current_app=self.name)
        defaults = {
            'form_class': AdminPasswordChangeForm,
            'success_url': url,
            'extra_context': dict(self.each_context(request), **(extra_context or {})),
        }
        if self.password_change_template is not None:
            defaults['template_name'] = self.password_change_template
        request.current_app = self.name
        return PasswordChangeView.as_view(**defaults)(request) 
开发者ID:Yeah-Kun,项目名称:python,代码行数:18,代码来源:sites.py

示例6: logout

# 需要导入模块: from django.views.i18n import JavaScriptCatalog [as 别名]
# 或者: from django.views.i18n.JavaScriptCatalog import as_view [as 别名]
def logout(self, request, extra_context=None):
        """
        Logs out the user for the given HttpRequest.

        This should *not* assume the user is already logged in.
        """
        from django.contrib.auth.views import LogoutView
        defaults = {
            'extra_context': dict(
                self.each_context(request),
                # Since the user isn't logged out at this point, the value of
                # has_permission must be overridden.
                has_permission=False,
                **(extra_context or {})
            ),
        }
        if self.logout_template is not None:
            defaults['template_name'] = self.logout_template
        request.current_app = self.name
        return LogoutView.as_view(**defaults)(request) 
开发者ID:Yeah-Kun,项目名称:python,代码行数:22,代码来源:sites.py

示例7: password_change_done

# 需要导入模块: from django.views.i18n import JavaScriptCatalog [as 别名]
# 或者: from django.views.i18n.JavaScriptCatalog import as_view [as 别名]
def password_change_done(self, request, extra_context=None):
        """
        Display the "success" page after a password change.
        """
        from django.contrib.auth.views import PasswordChangeDoneView
        defaults = {
            'extra_context': dict(self.each_context(request), **(extra_context or {})),
        }
        if self.password_change_done_template is not None:
            defaults['template_name'] = self.password_change_done_template
        request.current_app = self.name
        return PasswordChangeDoneView.as_view(**defaults)(request) 
开发者ID:reBiocoder,项目名称:bioforum,代码行数:14,代码来源:sites.py

示例8: i18n_javascript

# 需要导入模块: from django.views.i18n import JavaScriptCatalog [as 别名]
# 或者: from django.views.i18n.JavaScriptCatalog import as_view [as 别名]
def i18n_javascript(self, request, extra_context=None):
        """
        Display the i18n JavaScript that the Django admin requires.

        `extra_context` is unused but present for consistency with the other
        admin views.
        """
        return JavaScriptCatalog.as_view(packages=['django.contrib.admin'])(request) 
开发者ID:reBiocoder,项目名称:bioforum,代码行数:10,代码来源:sites.py

示例9: login

# 需要导入模块: from django.views.i18n import JavaScriptCatalog [as 别名]
# 或者: from django.views.i18n.JavaScriptCatalog import as_view [as 别名]
def login(self, request, extra_context=None):
        """
        Display the login form for the given HttpRequest.
        """
        if request.method == 'GET' and self.has_permission(request):
            # Already logged-in, redirect to admin index
            index_path = reverse('admin:index', current_app=self.name)
            return HttpResponseRedirect(index_path)

        from django.contrib.auth.views import LoginView
        # Since this module gets imported in the application's root package,
        # it cannot import models from other applications at the module level,
        # and django.contrib.admin.forms eventually imports User.
        from django.contrib.admin.forms import AdminAuthenticationForm
        context = dict(
            self.each_context(request),
            title=_('Log in'),
            app_path=request.get_full_path(),
            username=request.user.get_username(),
        )
        if (REDIRECT_FIELD_NAME not in request.GET and
                REDIRECT_FIELD_NAME not in request.POST):
            context[REDIRECT_FIELD_NAME] = reverse('admin:index', current_app=self.name)
        context.update(extra_context or {})

        defaults = {
            'extra_context': context,
            'authentication_form': self.login_form or AdminAuthenticationForm,
            'template_name': self.login_template or 'admin/login.html',
        }
        request.current_app = self.name
        return LoginView.as_view(**defaults)(request) 
开发者ID:reBiocoder,项目名称:bioforum,代码行数:34,代码来源:sites.py

示例10: create_admin_view

# 需要导入模块: from django.views.i18n import JavaScriptCatalog [as 别名]
# 或者: from django.views.i18n.JavaScriptCatalog import as_view [as 别名]
def create_admin_view(self, admin_view_class):
        return self.get_view_class(admin_view_class).as_view() 
开发者ID:Superbsco,项目名称:weibo-analysis-system,代码行数:4,代码来源:sites.py

示例11: create_model_admin_view

# 需要导入模块: from django.views.i18n import JavaScriptCatalog [as 别名]
# 或者: from django.views.i18n.JavaScriptCatalog import as_view [as 别名]
def create_model_admin_view(self, admin_view_class, model, option_class):
        return self.get_view_class(admin_view_class, option_class).as_view() 
开发者ID:Superbsco,项目名称:weibo-analysis-system,代码行数:4,代码来源:sites.py

示例12: i18n_javascript

# 需要导入模块: from django.views.i18n import JavaScriptCatalog [as 别名]
# 或者: from django.views.i18n.JavaScriptCatalog import as_view [as 别名]
def i18n_javascript(self, request):
        from django.views.i18n import JavaScriptCatalog
        """
        Displays the i18n JavaScript that the Django admin requires.

        This takes into account the USE_I18N setting. If it's set to False, the
        generated JavaScript will be leaner and faster.
        """
        return JavaScriptCatalog.as_view(packages=['django.contrib.admin'])(request)

# This global object represents the default admin site, for the common case.
# You can instantiate AdminSite in your own code to create a custom admin site. 
开发者ID:Superbsco,项目名称:weibo-analysis-system,代码行数:14,代码来源:sites.py

示例13: password_change_done

# 需要导入模块: from django.views.i18n import JavaScriptCatalog [as 别名]
# 或者: from django.views.i18n.JavaScriptCatalog import as_view [as 别名]
def password_change_done(self, request, extra_context=None):
        """
        Display the "success" page after a password change.
        """
        from django.contrib.auth.views import PasswordChangeDoneView
        defaults = {
            'extra_context': {**self.each_context(request), **(extra_context or {})},
        }
        if self.password_change_done_template is not None:
            defaults['template_name'] = self.password_change_done_template
        request.current_app = self.name
        return PasswordChangeDoneView.as_view(**defaults)(request) 
开发者ID:PacktPublishing,项目名称:Hands-On-Application-Development-with-PyCharm,代码行数:14,代码来源:sites.py

示例14: login

# 需要导入模块: from django.views.i18n import JavaScriptCatalog [as 别名]
# 或者: from django.views.i18n.JavaScriptCatalog import as_view [as 别名]
def login(self, request, extra_context=None):
        """
        Display the login form for the given HttpRequest.
        """
        if request.method == 'GET' and self.has_permission(request):
            # Already logged-in, redirect to admin index
            index_path = reverse('admin:index', current_app=self.name)
            return HttpResponseRedirect(index_path)

        from django.contrib.auth.views import LoginView
        # Since this module gets imported in the application's root package,
        # it cannot import models from other applications at the module level,
        # and django.contrib.admin.forms eventually imports User.
        from django.contrib.admin.forms import AdminAuthenticationForm
        context = {
            **self.each_context(request),
            'title': _('Log in'),
            'app_path': request.get_full_path(),
            'username': request.user.get_username(),
        }
        if (REDIRECT_FIELD_NAME not in request.GET and
                REDIRECT_FIELD_NAME not in request.POST):
            context[REDIRECT_FIELD_NAME] = reverse('admin:index', current_app=self.name)
        context.update(extra_context or {})

        defaults = {
            'extra_context': context,
            'authentication_form': self.login_form or AdminAuthenticationForm,
            'template_name': self.login_template or 'admin/login.html',
        }
        request.current_app = self.name
        return LoginView.as_view(**defaults)(request) 
开发者ID:PacktPublishing,项目名称:Hands-On-Application-Development-with-PyCharm,代码行数:34,代码来源:sites.py

示例15: password_change_done

# 需要导入模块: from django.views.i18n import JavaScriptCatalog [as 别名]
# 或者: from django.views.i18n.JavaScriptCatalog import as_view [as 别名]
def password_change_done(self, request, extra_context=None):
        """
        Displays the "success" page after a password change.
        """
        from django.contrib.auth.views import PasswordChangeDoneView
        defaults = {
            'extra_context': dict(self.each_context(request), **(extra_context or {})),
        }
        if self.password_change_done_template is not None:
            defaults['template_name'] = self.password_change_done_template
        request.current_app = self.name
        return PasswordChangeDoneView.as_view(**defaults)(request) 
开发者ID:Yeah-Kun,项目名称:python,代码行数:14,代码来源:sites.py


注:本文中的django.views.i18n.JavaScriptCatalog.as_view方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。