Results 13 comments of Jon Grace-Cox

I am also hitting this issue, but I am not using any custom user model. I'm using `django==3.1.5` and `django-currentuser==0.5.3`. I do have a custom authentication middleware, but I don't...

As a test I updated the `_warn_for_shadowing_args()` function in `django_currentuser.db.models.fields.py` to include extra information in the warning message: ```python def _warn_for_shadowing_args(self, *args, **kwargs): if args: warnings.warn(self.warning) else: for key in...

@Espergium, I am using the `vivecraft-1.15.2-jrbudda-3-b12-installer.exe` installer and I get the same issue. I'm running Java 16.0.2.

This is how I fixed the issue. My system has Java 16.0.2 installed as the default Java and I didn't want to downgrade, so I downloaded Java 8 from https://adoptopenjdk.net/releases.html...

I just upgraded to Django 3.1 and started using `django-modeladmin-reorder` and immediately hit this too. @bloodwithmilk25 , your PR looks good - hoping it will get merged 😄

It may be worth linking this issue to #833 as it sounds like it could be the cause.

In the same line as this, it would be nice to be able to use the stargazers-style badge: ![image](https://user-images.githubusercontent.com/30441316/184546381-15ca337e-d619-40dd-9c73-d54fa0d8be94.png)

This is similar to #43 in terms of embedding an image via URL(?), although the location would be fixed with this. It would be nice to have pre-defined locations (e.g....

Images can be embedded into the SVG to make them self-contained using an image tag with `xlink` and a base64 encoding of the image. ```xml ```

This site has a lot of examples: https://github.com/Naereen/badges Some include icons and embedded PNG images.