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/79039331/9cca8bcf-6c14-42b4-a4d5-143948f2cbd5) Here self.pk_name will always be true so its value will always be id, no custom primary key can be used

I have the next model ``` class Base(DeclarativeBase): __abstract__ = True id = Column(UUID(as_uuid=True), primary_key=True, index=True, unique=True, server_default=text("gen_random_uuid()")) class User(Base): __tablename__ = "users" __pydantic_model__ = UserSchema class UserAdmin(ModelAdmin): model =...

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...

只看到类的描述,但是没看到具体在哪个模块,引用不进代码中啊。。。 很多示例各种缺少引用,光查找引用位置就浪费了大量时间

写了几天,挑了很多项目,最终选了这个,原因不多说,不用写前端,不用redis,部署轻便,项目不臃肿。 目前遇到的问题如下: 1.有些关于amis的参考,比如 `- 参考: [App 多页应用](https://baidu.gitee.io/amis/zh-CN/components/app) - 参考: [Tabs 选项卡](https://aisuda.bce.baidu.com/amis/zh-CN/components/tabs)` 你们页面上提供的好多都打不开了。另外就是example,或是例子能否给多一些,尤其针对一些关于前端页面的。 2.由于写的是一个定时任务,我这边主要用到的是[fastapi-scheduler],能否完善基础功能,如计划任务运行记录之类的。(我很费解的是这个项目启动建了六张表,如果不用auth几乎都用不上,能否增加些例子比如建计划任务运行记录或是接口记录表的例子?) 3.关于页面,我不知道perpage的数量应该怎么设置,我的接口是个固定返回数量的接口,我很纳闷,如果传10条,perpage就10条,如果20条,就20,还会有翻页。 前端页面 `# 注册自定义日志面板 @site.register_admin class AmisPageAdmin(admin.PageAdmin): page_schema = '日志面板' async def get_page(self, request: Request) -> Page:...