mirror of
https://github.com/adrigongv23/G26---Telemetry-Software.git
synced 2026-08-25 19:43:16 +02:00
8 lines
No EOL
326 B
Python
8 lines
No EOL
326 B
Python
from django.contrib import admin
|
|
from .models import TestGeneral
|
|
|
|
@admin.register(TestGeneral)
|
|
class TestGeneralAdmin(admin.ModelAdmin):
|
|
list_display = ('nombre', 'fecha_inicio', 'fecha_fin', 'categoria', 'temporada')
|
|
list_filter = ('categoria', 'temporada')
|
|
search_fields = ('nombre', 'descripcion', 'resultados') |