Skip to content

Commit 1eeb446

Browse files
committed
Move media data into repository
1 parent 23879e1 commit 1eeb446

10 files changed

+9
-9
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ __pycache__/
1111
local_settings.py
1212
db.sqlite3
1313
db.sqlite3-journal
14-
media
1514

1615
# If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
1716
# in your Git repository. Update and uncomment the following line accordingly.
1.75 MB
Binary file not shown.
48.2 KB
Loading
39.1 KB
Loading
Binary file not shown.
42.9 KB
Loading
Binary file not shown.

stade/core/templates/index.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{% extends "base.html" %}
2+
{% load static %}
23

34
{% block content %}
45
<section class="section container">
@@ -78,9 +79,9 @@ <h3>About Melanoma</h3>
7879
significant, when detected early, melanoma survival exceeds 95%.
7980
</p>
8081
<p>
81-
<a href="https://isic-challenge-data.s3.amazonaws.com/media/Melanoma-tutorial-for-ISBI-challenge.pptx">
82+
<a href="{% static 'media/Melanoma-tutorial-for-ISBI-challenge.pptx' %}">
8283
<img
83-
src="https://isic-challenge-data.s3.amazonaws.com/media/Melanoma-tutorial-for-ISBI-challenge.png"
84+
src="{% static 'media/Melanoma-tutorial-for-ISBI-challenge.png' %}"
8485
alt="Melanoma Tutorial">
8586
</a>
8687
</p>
@@ -106,9 +107,9 @@ <h3>About Dermoscopy</h3>
106107
</p>
107108
<p>
108109
<a href=
109-
"https://isic-challenge-data.s3.amazonaws.com/media/DermoscopyImageAnalysisPPT_3.pdf">
110+
"{% static 'media/DermoscopyImageAnalysisPPT_3.pdf' %}">
110111
<img
111-
src="https://isic-challenge-data.s3.amazonaws.com/media/DermoscopyImageAnalysisPPT_3.png"
112+
src="{% static 'media/DermoscopyImageAnalysisPPT_3.png' %}"
112113
alt="Dermoscopic Image Analysis">
113114
</a>
114115
</p>

stade/core/templates/landing/2016/38.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,9 @@ <h4>Dermoscopic Feature Tutorial</h4>
124124
<p>The following tutorial is designed to assist participants in understanding the underlying
125125
semantics of the "globules" and "streaks" dermoscopic features:</p>
126126
<p>
127-
<a href="https://isic-challenge-data.s3.amazonaws.com/media/Globules-and-Streaks-tutorial-for-ISBI-landing-page.pptx">
127+
<a href="{% static 'media/Globules-and-Streaks-tutorial-for-ISBI-landing-page.pptx' %}">
128128
<img
129-
src="https://isic-challenge-data.s3.amazonaws.com/media/Globules-and-Streaks-tutorial-for-ISBI-landing-page.png"
129+
src="{% static 'media/Globules-and-Streaks-tutorial-for-ISBI-landing-page.png' %}"
130130
alt="Globules and Streaks Tutorial">
131131
</a>
132132
</p>

stade/core/templates/landing/2016/40.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ <h4>Dermoscopic Feature Tutorial</h4>
6161
<p>The following tutorial is designed to assist participants in understanding the underlying
6262
semantics of the "globules" and "streaks" dermoscopic features:</p>
6363
<p>
64-
<a href="https://isic-challenge-data.s3.amazonaws.com/media/Globules-and-Streaks-tutorial-for-ISBI-landing-page.pptx">
64+
<a href="{% static 'media/Globules-and-Streaks-tutorial-for-ISBI-landing-page.pptx' %}">
6565
<img
66-
src="https://isic-challenge-data.s3.amazonaws.com/media/Globules-and-Streaks-tutorial-for-ISBI-landing-page.png"
66+
src="{% static 'media/Globules-and-Streaks-tutorial-for-ISBI-landing-page.png' %}"
6767
alt="Globules and Streaks Tutorial">
6868
</a>
6969
</p>

0 commit comments

Comments
 (0)