python-adminui icon indicating copy to clipboard operation
python-adminui copied to clipboard

Write professional web interfaces with Python.

Results 26 python-adminui issues
Sort by recently updated
recently updated
newest added

@app.page('/', 'Home', ['user']) def home_page(): return [ Form(on_submit = on_submit, content = [ TextField('Title', required_message="The title is required!"), TextArea('Description'), FormActions(content = [ SubmitButton('Submit') ]) ]) ] 重定向到了http://127.0.0.1:5000/user/login?errorTitle=No%20Permission&errorMsg=Please%20login%20first%20or%20contact%20your%20administrator 404 Not Found

I have a modal form with three SelectBox elements. See screenshot below. I want to be able to change the content of the 2nd SelectBox (i.e. the 'data' option) based...

When tables get a large number of columns or the column text is wide, all columns cannot fit on small screen sizes but no horizontal scrollbar is shown so some...

I have created some modal windows but find it difficult to manage the layout when I have long labels for the textfield boxes. See the image below, where you can...

I have been constructing my app quite happily using multiple source files, one per view. The directory layout is: ``` [root@fxhead adminui]# tree -L 2 . ├── app.py ├── config.py...

Any chance to support a 3rd party Markdown component? I noticed a couple of options here (and Antd doesn't support a Markdown component as standard): https://github.com/DwayneAnderson/react-antdown or https://remarkjs.github.io/react-markdown/ This could,...

I'd like to have a button or Menu item that can be used to request login details. What I have now is a Menu item as follows: ```MenuItem('Login', '/login', icon="login"),```...

Since antd does not appear to support validation for form fields it means the validation has to made after form submission. However without direct access to the form it is...

It would be great to get the following Antd components or enhancements to existing components available in Adminui. - Antd.Button: support the 'href' option to enable a button click to...

When using an Upload component in a Modal form, if the user uses the small delete icon next to the uploaded file to remove the file from the uploaded file...