Add Ordering

Report a typo

You have the FilmAdmin class in the admin.py module:

class FilmAdmin(admin.ModelAdmin):
    ...

Modify it so that the list of movies in the admin interface displayed fields writer, director, and box_office sorted by the box office in ascending order.

Write a program in Python 3
from django.contrib import admin


class FilmAdmin(admin.ModelAdmin):
list_display = ...
ordering = ...
___

Create a free account to access the full topic