Alex Lokhman

Results 6 issues of Alex Lokhman

This will cover the following scenarios: ``` type input struct { Field *time.Time `form:"field" time_format:"2006-01-02" time_utc:"1"` } ```

enhancement
feature

Add `null=True` to both fields of `MiddlewareEvents` model to display all events in the admin. Closes: https://github.com/Opus10/django-pghistory/issues/129 Type: bug

Currently, `user` and `url` proxy fields in `MiddlewareEvents` are non-nullable, which makes the admin page display only those events that have both values in the context metadata. The counter at...

If a tracked model has a custom private key field, which has a different database representation to the instance value, the queryset for `pghistory.models.Event` fails. Closes: https://github.com/Opus10/django-pghistory/issues/126 Additionally, this fixes...

If a tracked model has a custom private key field, which has a different database representation to the instance value, the queryset for `pghistory.models.Event` fails: Example error: ``` django.db.utils.DataError: invalid...

When `core.event_models` function filters event models by proxy `references_model` or `tracks_model`, it should use the concrete model for filtering. It will allow showing correct results in the Events admin when...