unfoldadmin / django-unfold

Modern Django admin theme for seamless interface development
https://unfoldadmin.com
MIT License
1.03k stars 96 forks source link

django forms conflicts with contrib forms label #337

Closed jdenisTLM closed 1 month ago

jdenisTLM commented 1 month ago

It could be nice to have a custom label in contrib.forms.apps and contrib.forms.filters to avoid app conflict on init :

from django.apps import AppConfig

class DefaultAppConfig(AppConfig):
    name = "unfold.contrib.forms"
    label = "unfoldforms"
from django.apps import AppConfig

class DefaultAppConfig(AppConfig):
    name = "unfold.contrib.filters"
    label = "unfoldfilters"
lukasvinclav commented 1 month ago

@jdenisTLM PR merged. Thanks!