-
```
from django.utils.translation import gettext_lazy as _
from django.db import models
class AuditableModel(models.Model):
last_updated_by = models.CharField( max_length=50 )
last_up…
-
https://www.notion.so/sentry/DB-models-in-shared-745e0ab88932471db636f6e84a34bec2#7dc347dc6cc24f1f92aa40ba05486a5a
-
I have pyright installed, I am working with Neovim. When I try to use django-types it throws '"models" is unknown import symbol' on the line 'from django.db import models'. When I use django-stubs ins…
-
`ruff check` produces false positive DJ012 for Django models like so:
```
class Person(models.Model):
name = models.CharField(xxxx)
def __init__(self, *args, **kwargs):
…
-
Sentry Issue: [JOB-SERVER-MF](https://ebm-datalab.sentry.io/issues/6041615623/?referrer=github_integration)
```
TypeError: 'User' object is not subscriptable
File "django/template/base.py", line 88…
-
# [DJ008](https://docs.astral.sh/ruff/rules/django-model-without-dunder-str/) - Django model without \_\_str\_\_ method
[django-auto-prefetch](https://github.com/tolomea/django-auto-prefetch) uses …
-
When installing v1.3.0 I get issues.
Did a makemigrations and got following
```
# Generated by Django 4.2.11 on 2024-10-18 13:22
from django.db import migrations, models
class Migration(m…
-
Idea:
```
from django.db import models
from nanodjango import Django
app = Django()
@app.admin
class CountLog(models.Model):
# Standard Django model, registered with the admin site
…
-
**Describe the bug**
When attempting to log in using a SAML provider configured in the "Federation and Social Login" section of the authentik admin interface, an exception appears in the logs. This o…
4d62 updated
16 hours ago
-
so i am installing this on trunas scale, the new one that moved away from k3s, the issue i am having is that since that machine is headless, i am unable to access localhost:3334 from the machine since…