Skip to content

Commit

Permalink
Merge pull request #74 from uw-it-aca/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
mikeseibel committed Aug 31, 2020
2 parents 96768e7 + 58fbd68 commit 2632552
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion blti/templates/blti/develop/launch.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<div id="main">
<div class="inner">
<form action="/{{ lti_app }}" method="POST" id="form1">
<form action="/{{ lti_app }}/" method="POST" id="form1">
{% for k, v in lti_parameters %}
<input type="hidden" name="{{ k }}" value="{{ v }}">
{% endfor %}
Expand Down
2 changes: 1 addition & 1 deletion blti/templates/blti/develop/prepare.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<div id="main">
<div class="inner">
<h2>LTI Context Settings for {{ lti_app }} Launch</h3>
<form action="/blti/dev/launch" method="get" id="form1">
<form action="/blti/dev/launch/" method="get" id="form1">
<div class="form-row">
<div class="form-group col-md-6">
<label for="campus">Campus:</label>
Expand Down
4 changes: 2 additions & 2 deletions blti/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
and getattr(settings, "DEBUG", False)):
from blti.views.develop import BLTIDevPrepare, BLTIDevLaunch
urlpatterns += [
re_path(r'dev[/]?$', BLTIDevPrepare.as_view()),
re_path(r'dev/launch[/]?', BLTIDevLaunch.as_view()),
re_path(r'^dev[/]?$', BLTIDevPrepare.as_view()),
re_path(r'^dev/launch/$', BLTIDevLaunch.as_view()),
]

0 comments on commit 2632552

Please sign in to comment.