8 lines
241 B
Python
8 lines
241 B
Python
from django.contrib import admin
|
|
from isotopapp import models
|
|
|
|
# Register your models here.
|
|
@admin.register(models.FieldProfile)
|
|
class FieldProfileAdmin(admin.ModelAdmin):
|
|
list_display = ('name', 'step', 'cryo_length', 'reverse_offset')
|