Farly FD

Results 8 comments of Farly FD

Hi @shuhaojie, I think you can override ```cell_attributes``` and use ```style``` attribute to "hide", my suggestion is to use combination of ```max-width```, ```overflow: hidden```, ```text-overflow: ellipsis```, and ```white-space: nowrap```. Here...

Hi @ericovva, you can override ```resolve_query_params``` method when creating Model Resource, here is the example: ```python from starlette.requests import Request from tortoise.queryset import QuerySet from fastapi_admin.app import app as admin...

Actually, it does provide UI like Django Admin, but you just need to do some steps which I also cannot find in documentation. Refer to [https://github.com/fastapi-admin/fastapi-admin/issues/119#issuecomment-1450211260](https://github.com/fastapi-admin/fastapi-admin/issues/119#issuecomment-1450211260) to follow the steps

Hi @vampolo, this also confuse me at first, because I came from django, I thought we don't need to overwrite any templates at all, unfortunately it is a requirement, you...

Can confirm it still happen in `v0.2024.03.12.08.02.stable_01` on MacOS, but on my linux machine it's working correctly

I think the custom strategies is not supposed to use with `login` auth operation. It's for accessing the API directly without doing the `login` auth operation. I ended up just...

This also happened to me, same error, because I'm maintaining old project, node version is still at version 12, after upgrading to node 14, the error is gone, and eslint...