Simple and extensible admin interface framework for Flask
86
Quality
Pending
Does it follow best practices?
Impact
86%
1.30xAverage score across 10 eval scenarios
Build an admin interface for managing user profiles with a custom form layout that organizes fields into logical sections.
Create a Flask application with an admin interface for a User model that includes the following fields:
The form layout must be customized to organize these fields into three distinct sections:
Additionally, the edit form should have a different layout than the create form:
@generates
from flask import Flask
from flask_sqlalchemy import SQLAlchemy
# Flask application with admin interface
app = Flask(__name__)
db = SQLAlchemy()
# User model with all specified fields
class User(db.Model):
pass
# Admin view with custom form layout
class UserAdmin:
passProvides admin interface framework with form layout customization capabilities.
Install with Tessl CLI
npx tessl i tessl/pypi-flask-admindocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10