fastapi-amis-admin icon indicating copy to clipboard operation
fastapi-amis-admin copied to clipboard

FastAPI-Amis-Admin is a high-performance, efficient and easily extensible FastAPI admin framework. Inspired by django-admin, and has as many powerful functions as django-admin.

Results 65 fastapi-amis-admin issues
Sort by recently updated
recently updated
newest added

登录之后一直显示重定向次数过多

sqlmodel support SQLAlchemy v2 now. https://github.com/tiangolo/sqlmodel/releases/tag/0.0.12

Traceback (most recent call last): File "/root/.pycharm_helpers/pydev/pydevd.py", line 1534, in _exec pydev_imports.execfile(file, globals, locals) # execute the script File "/root/.pycharm_helpers/pydev/_pydev_imps/_pydev_execfile.py", line 18, in execfile exec(compile(contents+"\n", file, 'exec'), glob, loc) File...

Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. Release notes Sourced from actions/cache's releases. v4.0.0 What's Changed Update action to node20 by @​takost in actions/cache#1284 feat: save-always flag by @​to-s in actions/cache#1242...

dependencies
github_actions

Exception after I installed fastapi-amis-admin and fastapi-user-auth. I'm sure I have installed fastapi_user_auth. faa run INFO: Uvicorn running on http://127.0.0.1:9000 (Press CTRL+C to quit) INFO: Started reloader process [59819] using...

pip install fastapi_amis_admin[cli] zsh: no matches found: fastapi_amis_admin[cli] 求问大佬,这个怎么处理

默认代码安装,登陆root成功后, 307 Temporary Redirect死循环。日志如下: ``` 2023-11-17 08:57:37,025 INFO sqlalchemy.engine.Engine [cached since 408.3s ago] (2,) INFO: 15.204.16.79:9173 - "GET /auth/form/login?redirect=/admin/ HTTP/1.1" 307 Temporary Redirect 2023-11-17 08:57:37,037 INFO sqlalchemy.engine.Engine COMMIT 2023-11-17 08:57:37,507...

ModelAdmin自动化实现了curd接口,非常赞,ModelAdmin能注册到AdminApp中作为一个单独的页面。 业务需求是注册到PageAdim中作为页面的一部分。能给一些demo吗? 另外,如要要自己实现,modelAdmin的crud api的路径怎么适配呢?

Using the example found here: https://github.com/amisadmin/fastapi-amis-admin/tree/master/fastapi_amis_admin/crud Any attempt made to persist an "Article" in the SQLite DB fails. Also, starting a new project from scratch with this example fails over...

Run code from [fastapi-amis-admin-demo](https://github.com/amisadmin/fastapi-amis-admin-demo/blob/master/backend/apps/blog/models.py) ```Python class Category(SQLModel, table=True): id: int = Field(default=None, primary_key=True, nullable=False) name: str = Field(title="CategoryName", sa_column=Column(String(100), unique=True, index=True, nullable=False)) description: str = Field(default="", title="Description", amis_form_item="textarea") status: bool...