Git Product home page Git Product logo

Comments (5)

jowilf avatar jowilf commented on June 2, 2024 1

I think we need an attribute called default in the BaseField class.

Yes, and read the default value from the column definition (SQLAlchemy), Field(mongoengine)...

from starlette-admin.

sglebs avatar sglebs commented on June 2, 2024

Note: I have had this need for a long time. See #287 . Unfortunately #327 did not solve it for me, as it runs "too late" :-(

from starlette-admin.

hasansezertasan avatar hasansezertasan commented on June 2, 2024

I think we need an attribute called default in the BaseField class.

I just checked the templates, and saw these lines...

<div class="card-body border-bottom py-3">
{% block create_form %}
{% for field in model.get_fields_list(request, 'CREATE' | ra) %}
<div class="mb-3">
{% with action=('CREATE'| ra), data=(None if not obj else obj[field.name]), error=errors.get(field.name, None) if errors else None %}
{% include field.label_template %}
{% include field.form_template %}
{% endwith %}
</div>
{% endfor %}
{% endblock %}
</div>

The data that input fields take is calculated inside the template (see obj[field.name]), so overriding before_create or before_edit won't work. We need to move that functionality from Jinja2 to Python and call it from Jinja2, it'll make it easier to override. Otherwise, you would have to override +10 template files.

from starlette-admin.

hasansezertasan avatar hasansezertasan commented on June 2, 2024

I think we need an attribute called default in the BaseField class.

Yes, and read the default value from the column definition (SQLAlchemy), Field(mongoengine)...

Yep, that's what I'm talking about. Do you have a work in progress about this? If not, I may try to implement some stuff (I missed your reviews 😂, they are teaching!).

from starlette-admin.

jowilf avatar jowilf commented on June 2, 2024

Yep, that's what I'm talking about. Do you have a work in progress about this? If not, I may try to implement some stuff (I missed your reviews 😂, they are teaching!).

I'm glad you are learning from my reviews. Feel free to submit a PR for this. Thanks

from starlette-admin.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.