meal type admin

This commit is contained in:
vabene1111 2020-06-11 22:48:26 +02:00
parent 8ff52f542e
commit 3cbc6b5609
5 changed files with 34 additions and 2 deletions

View File

@ -105,7 +105,7 @@ admin.site.register(MealPlan, MealPlanAdmin)
class MealTypeAdmin(admin.ModelAdmin):
list_display = ('name', 'order')
list_display = ('name', 'created_by', 'order')
admin.site.register(MealType, MealTypeAdmin)

0
cookbook/tasks.py Normal file
View File

View File

@ -0,0 +1,7 @@
from __future__ import absolute_import, unicode_literals
# This will make sure the app is always imported when
# Django starts so that shared_task will use this app.
from .celery import app as celery_app
__all__ = ('celery_app',)

24
recipes/celery.py Normal file
View File

@ -0,0 +1,24 @@
from __future__ import absolute_import, unicode_literals
import os
from celery import Celery
# set the default Django settings module for the 'celery' program.
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'recipes.settings')
app = Celery('recipes')
# Using a string here means the worker doesn't have to serialize
# the configuration object to child processes.
# - namespace='CELERY' means all celery-related configuration keys
# should have a `CELERY_` prefix.
app.config_from_object('django.conf:settings', namespace='CELERY')
# Load task modules from all registered Django app configs.
app.autodiscover_tasks()
@app.task(bind=True)
def debug_task(self):
print('Request: {0!r}'.format(self.request))

View File

@ -21,3 +21,4 @@ six==1.15.0
webdavclient3==3.14.4
whitenoise==5.1.0
icalendar==4.0.6
Celery==4.4.5