Sergei Lashkevich

Results 1 issues of Sergei Lashkevich

For example, I have the following model: ```python class Promoaction(SQLModel, table=True): __tablename__ = "promoaction" promoaction_id: int name: str ``` I have the next admin: ```python class ActionAdmin(admin.ModelAdmin): page_schema = 'Promoaction...