Skip to content

Commit b56345f

Browse files
author
Chris Drackett
committed
Merge branch 'master' of git@github.com:leah/django-elsewhere
2 parents c25e4e9 + 54b539d commit b56345f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+237
-143
lines changed

README.markdown

Lines changed: 4 additions & 3 deletions
File renamed without changes.

admin.py renamed to elsewhere/admin.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
from django.contrib import admin
22

3-
from elsewhere.models import *
3+
from models import *
44

55
class ProfileAdmin(admin.ModelAdmin):
66
raw_id_fields = ['user']
77

88
class SocialNetworkProfileAdmin(ProfileAdmin):
9-
list_display = ('user', 'network', 'username') #, 'date_added')
9+
list_display = ('user', 'network_id', 'username') #, 'date_added')
1010

1111
class InstantMessengerProfileAdmin(ProfileAdmin):
12-
list_display = ('user', 'network', 'username') #, 'date_added')
12+
list_display = ('user', 'network_id', 'username') #, 'date_added')
1313

1414
class WebsiteProfileAdmin(ProfileAdmin):
1515
list_display = ('user', 'name', 'url') #, 'date_added')

default_list.py renamed to elsewhere/default_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,4 +437,4 @@
437437
'icon': 'yahoo.png',
438438
'network_type': 'im'
439439
},
440-
]
440+
]
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)