add taskresults app to handle celery task results

This commit is contained in:
Jan Dittberner 2014-12-29 15:55:57 +01:00
parent 9b4bef0050
commit a336af46c2
11 changed files with 149 additions and 2 deletions

View file

@ -0,0 +1,12 @@
"""
This module defines the admin interface for the taskresults app.
"""
from __future__ import absolute_import
from django.contrib import admin
from .models import TaskResult
admin.site.register(TaskResult)