| @@ -12,7 +12,7 @@ class CouponInfoAdmin(admin.ModelAdmin): | ||
| 12 | 12 |  | 
| 13 | 13 | class UserCouponInfoAdmin(admin.ModelAdmin): | 
| 14 | 14 |      list_display = ('brand_id', 'brand_name', 'user_coupon_id', 'coupon_id', 'user_id', 'coupon_title', 'coupon_value', 'active_at', 'expire_at', 'coupon_valid_period', 'coupon_limit_model_ids', 'has_used', 'admin_id', 'used_at', 'status', 'created_at', 'updated_at') | 
| 15 | -    list_filter = ('coupon_title', 'coupon_from', 'has_used', 'status') | |
| 15 | +    list_filter = ('coupon_title', 'coupon_from', 'coupon_value', 'has_used', 'status') | |
| 16 | 16 |      search_fields = ('user_id', ) | 
| 17 | 17 |  | 
| 18 | 18 |  |