Some funding timing tests.
[wolnelektury.git] / apps / funding / admin.py
old mode 100755 (executable)
new mode 100644 (file)
index b9fc8c9..c8a25d0
@@ -1,16 +1,21 @@
+# -*- coding: utf-8 -*-
+# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+#
 from django.contrib import admin
 from .models import Offer, Perk, Funding, Spent
 
 
 class OfferAdmin(admin.ModelAdmin):
     model = Offer
-    list_display = ['title', 'author', 'target', 'sum', 'is_win', 'start', 'end', 'due']
+    list_display = ['title', 'author', 'target', 'sum', 'is_win', 'start', 'end']
     search_fields = ['title', 'author']
+    readonly_fields = ('cover_img_tag',)
 
 
 class PerkAdmin(admin.ModelAdmin):
     model = Perk
-    list_display = ['name', 'price', 'end_date', 'offer']
+    list_display = ['name', 'long_name', 'price', 'end_date', 'offer']
 
 
 class FundingAdmin(admin.ModelAdmin):