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

Model ```python class User(MyBaseModel, table=True): username: str = Field(max_length=32, index=True, unique=True, regex='^[0-9A-Za-z]{5,30}$' ) password: bytes = Field(default=None) salt: bytes = Field(default=None) ... ``` ModelAdmin ```python class UserAdmin(admin.ModelAdmin): group_schema = None...

在表中新建条目之后,并没有立马能够查询到,是缓存的问题吗?

如何添加captcha验证码? 另外如果打开多个一级菜单,然后点击某个二级菜单,其他的一级菜单会自动关闭,这个怎么解决

你好,我希望ModelAdmin筛选数据时可以有更复杂的搜索条件,ConditionBuilder条件组合组件 似乎可以满足,能否将其做为数据筛选设置的一个选项。如果现在也可以支持的话,能否给个示例

enhancement

{ "draggable": True, "type": "input-kv", "label": "兑换奖品", "name": "rewards666", "id": "u:8cfc8df288e5", "multiple": True, "items": [ { "placeholder": "Key", "type": "input-text", "unique": True, "name": "key", "required": True, "validateOnChange": True }, {...

使用模板示例 https://gitee.com/Atomi/fastapi_amis_admin?_from=gitee_search#%E6%A8%A1%E5%9E%8B%E7%AE%A1%E7%90%86%E7%A4%BA%E4%BE%8B 在管理页面中 http://127.0.0.1:8000/admin/#/admin/categoryadmin 点击 批量新增,输入多行后,插入结果为 | CategoryName | Description | |--------------|-------------| | description | - |

```python class Lot(PkModelMixin, CreateTimeModelMixin, UpdateTimeModelMixin, table=True): data: dict = AdminField(title='Data', sa_column=Column("data", JSONB, nullable=True), default=None, ) ``` try post correct JSON ```json {"a": "1"} ``` raise exception ```json { "status": 422,...

Hello, I am currently setting up an admin environment using fastapi-amis-admin and am encountering the following error. Despite trying various installation methods such as a standard installation, fastapi-amis-admin[cli], running with...

I have the following field configuration in a model: ```python store_min_cost: float = Field( default=0.0, nullable=True, title="КЛ ₽(м2) min", amis_table_column={'type': "number", 'kilobitSeparator': True, 'sortable': True}, amis_filter_item= { "type": "input-group", "description":...