Nuno Khan

Results 46 comments of Nuno Khan

Thanks, i was able to glue this together and make it work: ```python from django.core.files import File as DjangoFile file_obj = DjangoFile(open(filename, mode='rb'), name=f'{instance.id}.csv') obj, created = File.objects.get_or_create( original_filename=file_obj.name, file=file_obj,...

@Olfredos6 I don't think you can. I filefield only has 1 file. You can probably group everything under the same parent folder or use a many to many to achieve...

this sounds about right to me. The admin integration is definitely something that needs some more love (keeping the history of filled inputs when changing to another for example). Keep...

some more details here : http://stackoverflow.com/questions/12875922/django-multiuploader-uncaught-typeerror-object-object-object-has-no-method-f

@gthieleb it depends. Can you provide some details on how exactly would this work applied to this project with some examples?

hi @gthieleb , sorry for the delay. The idea of this package is to replicate the commands in http://docs.celeryproject.org/en/latest/userguide/monitoring.html#management-command-line-utilities-inspect-control through a REST API. I saw that they have a `result`...

We will enable TravisCI and possibly Tox for this issue

@pslobo what do you think?? seems useful do me.. @kapz how does the certificate generation work? it has to be manual??

I like the idea, will test it myself for a while and if it panes out i don't see why we shouldn't add to the project

Maybe run `python3 manage.py createsuperuser --settings={{project_name}}.settings.local` as well ??