13 lines
213 B
Python
13 lines
213 B
Python
|
"""
|
||
|
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)
|