Q. | Is it possible to change how object forms appear in Django's admin interface? |
A. | Yes. When you activate the admin interface, you add the Admin class to the model with a simple pass as the code for the class. You can add code to the Admin class that you add to the model to change its appearance. |
Q. | Is it possible to add metadata to a class in a model? |
A. | Yes. Django provides a subclass called Meta that you can add to a class to define metadata for the class. |