fixed error
This commit is contained in:
parent
497b7f0a3c
commit
d78aec241a
|
@ -20,10 +20,9 @@ env:
|
||||||
GOOGLE_OAUTH_CLIENT_ID: 628308091838-nvfn455vabbq7j0odd797sls8itpplmr.apps.googleusercontent.com
|
GOOGLE_OAUTH_CLIENT_ID: 628308091838-nvfn455vabbq7j0odd797sls8itpplmr.apps.googleusercontent.com
|
||||||
SECRET_KEY: 9%2e!&f6(ib^690y48z)&w6fczhwukzzp@3y*^*7u+7%4s-mie
|
SECRET_KEY: 9%2e!&f6(ib^690y48z)&w6fczhwukzzp@3y*^*7u+7%4s-mie
|
||||||
GOOGLE_OAUTH_CLIENT_SECRET: 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
|
GOOGLE_OAUTH_CLIENT_SECRET: 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
|
||||||
refresh_token: 1//0gCf5fxAgSqNcCgYIARAAGBASNwF-L9IrIWxWwqmboeJkEzVn0sqxbaeyWXODE5s24V7pSdiAzFM2cxOUC9XT_xp7t_60o3JMfOg
|
REFRESH_TOKEN: 1//0gCf5fxAgSqNcCgYIARAAGBASNwF-L9IrIWxWwqmboeJkEzVn0sqxbaeyWXODE5s24V7pSdiAzFM2cxOUC9XT_xp7t_60o3JMfOg
|
||||||
email_id: 200010030@iitdh.ac.in
|
EMAIL_ID: 200010030@iitdh.ac.in
|
||||||
s_email: 200010024@iitdh.ac.in
|
ROLL_NO: 200010030
|
||||||
roll_no: 200010030
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
|
@ -149,8 +149,8 @@ class InternshipApplicationAdmin(ExportMixin, SimpleHistoryAdmin):
|
||||||
@admin.register(PlacementApplication)
|
@admin.register(PlacementApplication)
|
||||||
class PlacementApplication(PlacementAdmin):
|
class PlacementApplication(PlacementAdmin):
|
||||||
list_display = ('id', 'Placement', 'Student', 'selected')
|
list_display = ('id', 'Placement', 'Student', 'selected')
|
||||||
search_fields = ('id','Placement', 'Student')
|
search_fields = ('id',)
|
||||||
ordering = ('id','Placement', 'Student')
|
ordering = ('id',)
|
||||||
list_filter = ('selected',)
|
list_filter = ('selected',)
|
||||||
|
|
||||||
def Placement(self, obj):
|
def Placement(self, obj):
|
||||||
|
@ -161,8 +161,8 @@ class PlacementApplication(PlacementAdmin):
|
||||||
@admin.register(InternshipApplication)
|
@admin.register(InternshipApplication)
|
||||||
class InternshipApplication(InternshipApplicationAdmin):
|
class InternshipApplication(InternshipApplicationAdmin):
|
||||||
list_display = ('id', 'Internship', 'Student', 'selected')
|
list_display = ('id', 'Internship', 'Student', 'selected')
|
||||||
search_fields = ('id', 'Internship', 'Student')
|
search_fields = ('id',)
|
||||||
ordering = ('id', 'Internship', 'Student')
|
ordering = ('id',)
|
||||||
list_filter = ('selected',)
|
list_filter = ('selected',)
|
||||||
|
|
||||||
def Internship(self, obj):
|
def Internship(self, obj):
|
||||||
|
|
Loading…
Reference in New Issue