Prototype implementation
This commit is contained in:
parent
315143a6fc
commit
14b0bc6d01
160 changed files with 5731 additions and 42 deletions
10
vergabe_teilnahme/apps/preise/admin.py
Normal file
10
vergabe_teilnahme/apps/preise/admin.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
from django.contrib import admin
|
||||
|
||||
from .models import Preispunkt
|
||||
|
||||
|
||||
@admin.register(Preispunkt)
|
||||
class PreispunktAdmin(admin.ModelAdmin):
|
||||
list_display = ['konkrete_leistung', 'leistungstyp', 'einzelpreis', 'vergleichsgewicht', 'waehrung']
|
||||
list_filter = ['wiederkehrend', 'subunternehmeranteil']
|
||||
search_fields = ['konkrete_leistung', 'leistungstyp']
|
||||
Loading…
Add table
Add a link
Reference in a new issue