Skip to content

Commit 38548d7

Browse files
committed
added branding
1 parent 5839b4a commit 38548d7

File tree

10 files changed

+646
-207
lines changed

10 files changed

+646
-207
lines changed

activities/activity/modules/ags.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,13 @@ def ags():
2121
lineitems = ags_service.get_lineitems()
2222

2323
activity_id = int(launch_data.get('https://purl.imsglobal.org/spec/lti/claim/custom', {}).get('activity_id', 1))
24+
brand = launch_data.get('https://purl.imsglobal.org/spec/lti/claim/custom', {}).get('brand', 'corporate')
2425

2526
tpl_kwargs = {
2627
'page_title': "Assignments and Grades",
2728
'lineitems': lineitems,
28-
'activity_id': activity_id
29+
'activity_id': activity_id,
30+
'brand': brand
2931
}
3032

3133
return render_template("ags.html", **tpl_kwargs)

activities/activity/modules/dl.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ def deeplink():
1313

1414
launch_data = session.get('launch_data', {})
1515
launch_id = session.get('launch_id', '')
16+
brand = launch_data.get('https://purl.imsglobal.org/spec/lti/claim/custom', {}).get('brand', 'corporate')
1617

1718
courses = load_courses(app)
1819

@@ -34,7 +35,8 @@ def deeplink():
3435
'sourced_id': launch_data.get('https://purl.imsglobal.org/spec/lti/claim/lis', {}).get('course_section_sourcedid', '')
3536
},
3637
'user_roles': launch_data.get('https://purl.imsglobal.org/spec/lti/claim/roles', []),
37-
'resource_link': launch_data.get('https://purl.imsglobal.org/spec/lti/claim/resource_link', {})
38+
'resource_link': launch_data.get('https://purl.imsglobal.org/spec/lti/claim/resource_link', {}),
39+
'brand': brand
3840
}
3941
return render_template("deeplink.html", **tpl_kwargs)
4042

activities/activity/modules/lti.py

+4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ def home():
3636
# Some examples for handling custom parameters
3737
model_id = launch_data.get('https://purl.imsglobal.org/spec/lti/claim/custom', {}).get('model_id')
3838
activity_id = int(launch_data.get('https://purl.imsglobal.org/spec/lti/claim/custom', {}).get('activity_id', 1))
39+
brand = launch_data.get('https://purl.imsglobal.org/spec/lti/claim/custom', {}).get('brand', 'corporate')
3940

4041
tpl_kwargs = {
4142
'page_title': "Home",
@@ -48,6 +49,7 @@ def home():
4849
'resource_details': resource_details,
4950
'model_id': model_id,
5051
'activity_id': activity_id,
52+
'brand': brand,
5153
}
5254
return render_template("home.html", **tpl_kwargs)
5355

@@ -57,12 +59,14 @@ def id_token():
5759
launch_data = session.get('launch_data', {})
5860
launch_id = session.get('launch_id', '')
5961
activity_id = int(launch_data.get('https://purl.imsglobal.org/spec/lti/claim/custom', {}).get('activity_id', 1))
62+
brand = launch_data.get('https://purl.imsglobal.org/spec/lti/claim/custom', {}).get('brand', 'corporate')
6063

6164
tpl_kwargs = {
6265
'page_title': "ID Token",
6366
'launch_id': launch_id,
6467
'launch_data': launch_data,
6568
'activity_id': activity_id,
69+
'brand': brand
6670
}
6771

6872
return render_template("id_token.html", **tpl_kwargs)

activities/activity/modules/nrps.py

+2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ def nrps():
1111
return render_template("warning.html", message="You must access this application via a valid LTI 1.3 launch.")
1212

1313
activity_id = int(launch_data.get('https://purl.imsglobal.org/spec/lti/claim/custom', {}).get('activity_id', 1))
14+
brand = launch_data.get('https://purl.imsglobal.org/spec/lti/claim/custom', {}).get('brand', 'corporate')
1415

1516
tpl_kwargs = {
1617
'page_title': "Names and Roles Provisioning Service",
1718
'activity_id': activity_id,
19+
'brand': brand,
1820
}
1921

2022
return render_template("nrps.html", **tpl_kwargs)

0 commit comments

Comments
 (0)