django-mongoengine icon indicating copy to clipboard operation
django-mongoengine copied to clipboard

django mongoengine integration

Results 28 django-mongoengine issues
Sort by recently updated
recently updated
newest added

Bumps [django](https://github.com/django/django) from 4.0.6 to 4.0.7. Commits e9e9729 [4.0.x] Bumped version for 4.0.7 release. b7d9529 [4.0.x] Fixed CVE-2022-36359 -- Escaped filename in Content-Disposition header. 2eb7ded [4.0.x] Adjusted version 4.0.7 release...

dependencies

I have tried creating an admin interface around an existing database, but the pagination seems of by one. It's missing the first page, and the last page gives an error...

If the name of the reference field is different from the name of the reference, it will cause a KeyError. ``` def get_field_by_name(self, name): """ docs """ try: try: return...

Deleting an object on the admin view results in the following traceback: ` Environment: Request Method: GET Request URL: http://localhost:8000/admin/integration/analyzebeam/5e801b6ce5db3831a2ad80a4/delete/ Django Version: 2.1.7 Python Version: 3.7.7 Installed Applications: ['django.contrib.admin', 'django.contrib.auth',...

``` django-mongoengine==0.3.3 mongoengine==0.17.0 ``` I have the following models in a Django app: ``` from django_mongoengine import Document, EmbeddedDocument, fields class TestEmbModel(EmbeddedDocument): list_of_strings = fields.ListField(fields.StringField(), blank=True) class TestModel(Document): some_embedded_doc =...

When I login to django admin with super user I get the following message. The user_permissions array is also empty in mongodb. > { > "_id": ObjectId("57dc5db686w5c77e351e2e1c"), > "_cls": "User.Member",...

Related to the TODO in the readme - I've made some superficial patches to django-mongotools to get it going with django-mongoengine: https://github.com/TriggeredMessaging/django-mongotools/commit/3daff4eafac4b012f1600637527d94ada17c7c2e May be useful to someone.

I encountered a wee problem with using django_tables2. When passing an array of documents into the table from a queryset the column headings fall back to the default for verbose_name...

init__() takes at least 2 arguments (4 given) ``` /home/ubuntu/workspace/django-mongoengine/django_mongoengine/fields/djangoflavor.py in formfield return form_class(**defaults) kwargs {} choices_form_class None defaults = {'help_text': None, 'label': None, 'required': False} ```