mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
11 lines
300 B
Python
11 lines
300 B
Python
![]() |
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
from string import split as L
|
||
|
from django.contrib import admin
|
||
|
from paypal.pro.models import PayPalNVP
|
||
|
|
||
|
|
||
|
class PayPalNVPAdmin(admin.ModelAdmin):
|
||
|
list_display = L("user method flag flag_code created_at")
|
||
|
admin.site.register(PayPalNVP, PayPalNVPAdmin)
|