Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ __pycache__/
local_settings.py
db.sqlite3
db.sqlite3-journal
media

# If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
# in your Git repository. Update and uncomment the following line accordingly.
Expand Down
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
9 changes: 5 additions & 4 deletions stade/core/templates/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{% extends "base.html" %}
{% load static %}

{% block content %}
<section class="section container">
Expand Down Expand Up @@ -78,9 +79,9 @@ <h3>About Melanoma</h3>
significant, when detected early, melanoma survival exceeds 95%.
</p>
<p>
<a href="https://isic-challenge-data.s3.amazonaws.com/media/Melanoma-tutorial-for-ISBI-challenge.pptx">
<a href="{% static 'media/Melanoma-tutorial-for-ISBI-challenge.pptx' %}">
<img
src="https://isic-challenge-data.s3.amazonaws.com/media/Melanoma-tutorial-for-ISBI-challenge.png"
src="{% static 'media/Melanoma-tutorial-for-ISBI-challenge.png' %}"
alt="Melanoma Tutorial">
</a>
</p>
Expand All @@ -106,9 +107,9 @@ <h3>About Dermoscopy</h3>
</p>
<p>
<a href=
"https://isic-challenge-data.s3.amazonaws.com/media/DermoscopyImageAnalysisPPT_3.pdf">
"{% static 'media/DermoscopyImageAnalysisPPT_3.pdf' %}">
<img
src="https://isic-challenge-data.s3.amazonaws.com/media/DermoscopyImageAnalysisPPT_3.png"
src="{% static 'media/DermoscopyImageAnalysisPPT_3.png' %}"
alt="Dermoscopic Image Analysis">
</a>
</p>
Expand Down
4 changes: 2 additions & 2 deletions stade/core/templates/landing/2016/38.html
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ <h4>Dermoscopic Feature Tutorial</h4>
<p>The following tutorial is designed to assist participants in understanding the underlying
semantics of the "globules" and "streaks" dermoscopic features:</p>
<p>
<a href="https://isic-challenge-data.s3.amazonaws.com/media/Globules-and-Streaks-tutorial-for-ISBI-landing-page.pptx">
<a href="{% static 'media/Globules-and-Streaks-tutorial-for-ISBI-landing-page.pptx' %}">
<img
src="https://isic-challenge-data.s3.amazonaws.com/media/Globules-and-Streaks-tutorial-for-ISBI-landing-page.png"
src="{% static 'media/Globules-and-Streaks-tutorial-for-ISBI-landing-page.png' %}"
alt="Globules and Streaks Tutorial">
</a>
</p>
Expand Down
4 changes: 2 additions & 2 deletions stade/core/templates/landing/2016/40.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ <h4>Dermoscopic Feature Tutorial</h4>
<p>The following tutorial is designed to assist participants in understanding the underlying
semantics of the "globules" and "streaks" dermoscopic features:</p>
<p>
<a href="https://isic-challenge-data.s3.amazonaws.com/media/Globules-and-Streaks-tutorial-for-ISBI-landing-page.pptx">
<a href="{% static 'media/Globules-and-Streaks-tutorial-for-ISBI-landing-page.pptx' %}">
<img
src="https://isic-challenge-data.s3.amazonaws.com/media/Globules-and-Streaks-tutorial-for-ISBI-landing-page.png"
src="{% static 'media/Globules-and-Streaks-tutorial-for-ISBI-landing-page.png' %}"
alt="Globules and Streaks Tutorial">
</a>
</p>
Expand Down