mirror of
https://github.com/dolphin-emu/www.git
synced 2026-01-31 01:05:23 +01:00
12 lines
425 B
Python
12 lines
425 B
Python
# Copyright (c) 2018 Dolphin Emulator Website Contributors
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
from django.contrib import admin
|
|
from dolweb.media.models import Screenshot
|
|
|
|
class ScreenshotAdmin(admin.ModelAdmin):
|
|
list_display = ('game_name', 'image', 'displayed', 'promoted')
|
|
list_filter = ('displayed', 'promoted')
|
|
ordering = ('-displayed', '-promoted', 'game_name')
|
|
admin.site.register(Screenshot, ScreenshotAdmin)
|