Skip to content

Commit

Permalink
Fixed typo in urls.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lanny committed Jun 23, 2019
1 parent 5f81bb4 commit 5766cd1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ISS/templates/bbcode_help.html
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ <h2>Smilies</h2>
You can also use a fixed set of emoticons in your posts using shortcode. To use a smiley, type a colon, followed by a smiley's name, followed by another colon. For example :hai: produces {{ ":hai:"|bbc }}.
</p>
<p>
You can find a list of all the supported emoticons <a href="{% url 'smilies-refrence' %}">here</a>.
You can find a list of all the supported emoticons <a href="{% url 'smilies-reference' %}">here</a>.
</p>

</div>
Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions ISS/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
url(r'^sitemap.xml$', sitemap, {'sitemaps': iss_sitemaps}, name='sitemap'),

url(r'^smilies.css', views.misc.smilies_css, name='smilies-css'),
url(r'^smiley-refrence',
TemplateView.as_view(template_name="smilies_refrence.html"),
name='smilies-refrence'),
url(r'^smiley-reference',
TemplateView.as_view(template_name="smilies_reference.html"),
name='smilies-reference'),

url('^thread/(?P<thread_id>\d+)/?$',
views.forum.thread,
Expand Down

0 comments on commit 5766cd1

Please sign in to comment.