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

![image](https://github.com/amisadmin/fastapi-amis-admin/assets/61162308/b18994fc-2a1c-411f-8675-69ce2b8d4d65) ![image](https://github.com/amisadmin/fastapi-amis-admin/assets/61162308/2c6a4bb9-efe5-4423-9d25-b94ff5807a98) ![image](https://github.com/amisadmin/fastapi-amis-admin/assets/61162308/00977b7d-dacb-4c68-b8c3-852f82da3f77) ![image](https://github.com/amisadmin/fastapi-amis-admin/assets/61162308/c8900141-bdf6-4c44-9792-0d15501ae163)

Hello everyone 👋 I would like to contribute this project with translations, but first I would like to read a Contribution Guide, steps how to contribute. I would recommend checking...

hello, please add ```python ADDITIONAL_OPERATORS = { "similarity": lambda f, v: f.op("")(v), "word_similarity": lambda f, v: f.op(">")(v), "like": lambda f, v: f.ilike(v), "ilike": lambda f, v: f.ilike(v), "trigram_similar": lambda f,...

参考[buildAdmin](https://gitee.com/wonderful-code/buildadmin)的可视化配置CURD代码生成 可以快速生成应用代码

Hy there, I had used [fastapi-users-db-sqlalchemy] package for user model setup. Column type of id for user model is chat(36). For admin panel setup i have used this package but...

有人用这个开发出完整的项目不,能贡献出来看看吗? demo有点简单,想看看较完整的项目是怎样的

怎么离线使用,有cdn太慢了,希望能在不联网的条件下使用有什么办法?

File "/home/echoshoot/.conda/envs/LLMAPIs/lib/python3.11/site-packages/fastapi_sqlmodel_crud/_sqlmodel.py", line 18, in from fastapi.encoders import DictIntStrAny, SetIntStr ImportError: cannot import name 'DictIntStrAny' from 'fastapi.encoders'

> 这里假设站点地址是`localhost/admin` 现在页面上有个Link类型的Action,`link="/my_page"`,前端Link按钮生成的链接是`localhost/admin/#/my_page`。 预期是请求会返回一个amis的Form,显示到当前页面上。 我尝试用`site.router.add_api_route("/my_page", xxxx)`方法,实际注册的接口地址是`localhost/admin/my_page`,导致前端访问404。 请问如何将函数注册到`localhost/admin/#`开头的router上,使得能被Link访问。