Skip to content

Commit a612535

Browse files
authored
Merge pull request #80 from Serhazor/master
Fix #79, convert www.oscn.net to absolute link
2 parents bb3393c + c4b7634 commit a612535

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

website/templates/index.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,11 @@ <h4>1. How do I know my OSCN Case Number?</h4>
110110
</div>
111111
<div class="col-sm-6">
112112
<h4>2. What if I still can't find my case number?</h4>
113-
<p>Check with your public defender or search your name online at <a href=“www.oscn.net/dockets/search.aspx”>www.oscn.net/dockets/search.aspx </a> </p> </div> <div class="col-sm-6">
113+
<p>Check with your public defender or search your name online at <a href="https://www.oscn.net/dockets/search.aspx">www.oscn.net/dockets/search.aspx </a>
114+
</p>
115+
</div>
116+
117+
<div class="col-sm-6">
114118
<h4>3. Can other people be reminded of my court date?</h4>
115119
<p>Anyone with your case number will be able to use courtbot to keep track of your court date.</p>
116120
</div>

website/urls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
urlpatterns = [
55
path('', views.index, name='index'),
66
path('schedule_reminders', views.schedule_reminders, name='schedule_reminders')
7-
]
7+
]

website/views.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
from alerts.models import Alert
1414

15+
1516
def index(request):
1617
# """View function for home page of site."""
1718

@@ -72,3 +73,4 @@ def schedule_reminders(request):
7273
_, another_reminder_message = set_case_reminder(arraignment_datetime, case_num, add_num)
7374
messages.info(request, another_reminder_message)
7475
return redirect('/#form')
76+

0 commit comments

Comments
 (0)