books-medicalCreate Placeholders

To add placeholders for the fields in your AddNewsForm, you can use the widgets attribute inside the Meta class. Each field can have its own widget with a attrs dictionary, where you define the placeholder text.

Before..
After

Here's how your updated code would look with placeholders:

Last updated