mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-04-28 03:21:12 +00:00
* [Update] 任务区分org * [Update] 修改翻译 * [Update] 使用id而不是hostname * [Update] 执行命令 * [Update] 修改一些东西 * [Update] 暂存 * [Update] 用户执行命令 * [Update] 添加资产授权模块-tree * [Update] 暂时这样 * [Update] 批量命令执行 * [Update] 修改表结构 * [Update] 更新翻译 * [Update] 删除cloud模块无效中文翻译
15 lines
324 B
Python
15 lines
324 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
from django.views.generic import DetailView
|
|
|
|
from common.permissions import AdminUserRequiredMixin
|
|
from ..models import CeleryTask
|
|
|
|
|
|
__all__ = ['CeleryTaskLogView']
|
|
|
|
|
|
class CeleryTaskLogView(AdminUserRequiredMixin, DetailView):
|
|
template_name = 'ops/celery_task_log.html'
|
|
model = CeleryTask
|