mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-31 22:20:12 +00:00
10 lines
300 B
Python
10 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)
|