-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Template HTML lang, remove styles, head title
- Loading branch information
Showing
2 changed files
with
3 additions
and
9 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
openedx_lti_tool_plugin/templates/openedx_lti_tool_plugin/base.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 1 addition & 7 deletions
8
openedx_lti_tool_plugin/templates/openedx_lti_tool_plugin/deep_linking/form.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,11 @@ | ||
{% extends 'openedx_lti_tool_plugin/base.html' %} | ||
{% load i18n %} | ||
|
||
{% block title %}Open edX LTI Tool Plugin - Deep Linking UI{% endblock %} | ||
{% block title %}Deep Linking{% endblock %} | ||
{% block content %} | ||
<form id='deepLinkingForm' action='{% url form_url launch_id=launch_id %}' method='post'> | ||
{% csrf_token %} | ||
{{ form }} | ||
<input type='submit' value='{% translate "Submit" %}'> | ||
</form> | ||
<style> | ||
#deepLinkingForm ul { | ||
list-style-type: none; | ||
padding-left: 0; | ||
} | ||
</style> | ||
{% endblock %} |