Denis Surkov
Denis Surkov
@markstory , hi! Sorry to bother you, but can you help with merging this PR?
Also, may be someone know a way to avoid problems on `makemigrations` step? Or there are no easy way to change behavior of how `makemigrations` works?
@tbicr, thank you for your answer! > If you have issues with makemigrations, please provide details and create an issue. No, I don't have any issues. I was asking if...
I would like to help with this one I guess sometimes, especially if args are pretty big, it would be useful to disable showing args or even disable querying them...
I think it's possible to do it without any modifications: ```python # your_custom_app/admin.py from django.contrib import admin from procrastinate.contrib.django.admin import ProcrastinateJobAdmin from procrastinate.contrib.django.models import ProcrastinateJob admin.site.unregister(ProcrastinateJob) @admin.register(ProcrastinateJob) class MySuperAdmin(ProcrastinateJobAdmin): list_display...
Yes, no problem ```python # your_custom_app/admin.py from django.contrib import admin from procrastinate.contrib.django.admin import ProcrastinateJobAdmin from procrastinate.contrib.django.models import ProcrastinateJob admin.site.unregister(ProcrastinateJob) @admin.register(ProcrastinateJob) class MySuperAdmin(ProcrastinateJobAdmin): list_display = [ "pk", "short_task_name", "pretty_args", "pretty_status", "summary",...
@medihack , I made PoC with `wrap_json`. If it looks okey, I will do the same with other connectors.