Skip to content

Commit

Permalink
fix: Template HTML lang, remove styles, head title
Browse files Browse the repository at this point in the history
  • Loading branch information
kuipumu committed May 17, 2024
1 parent b4e278d commit d65a535
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<!DOCTYPE html>
<html lang='{{ request.LANGUAGE_CODE|default:"en" %}'>
<html lang='{{ request.LANGUAGE_CODE|default:"en" }}'>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<title>{% block title %}Open edX LTI Tool Plugin{% endblock %}</title>
<title>{% block title %}{% endblock %}</title>
</head>
<body>
{% block content %}{% endblock %}
Expand Down
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 %}

0 comments on commit d65a535

Please sign in to comment.