Skip to content

Commit ed1e76b

Browse files
committed
Move includes into their app namespace
1 parent d3ec94e commit ed1e76b

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed
File renamed without changes.

src/apps/home/templates/includes/dummy_table_all_curations.html renamed to src/apps/home/templates/home/includes/dummy_table_all_curations.html

File renamed without changes.

src/apps/home/templates/includes/dummy_table_your_curations.html renamed to src/apps/home/templates/home/includes/dummy_table_your_curations.html

File renamed without changes.

src/apps/home/templates/home/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ <h2 class="title">HLA Curation Interface</h2>
1818
</div>
1919
</section>
2020
</div>
21-
{% include "includes/add_buttons.html" %}
21+
{% include "home/includes/add_buttons.html" %}
2222
{% if is_authenticated %}
2323
<div class="block">
2424
<h3 class="title is-4">Your Curations</h3>
25-
{% include "includes/dummy_table_your_curations.html" %}
25+
{% include "home/includes/dummy_table_your_curations.html" %}
2626
</div>
2727
{% else %}
2828
<div class="block">
2929
<h3 class="title is-4">All Curations</h3>
30-
{% include "includes/dummy_table_all_curations.html" %}
30+
{% include "home/includes/dummy_table_all_curations.html" %}
3131
</div>
3232
{% endif %}
3333
{% endblock %}

src/apps/publications/templates/includes/pubmed_table.html renamed to src/apps/publications/templates/publications/includes/pubmed_table.html

File renamed without changes.

src/apps/publications/templates/publications/pubmed/all.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ <h1 class="title">PubMed Articles</h1>
2424
<a class="button is-responsive" href="{% url "new_pubmed" %}">Add PubMed Article</a>
2525
</div>
2626
<div class="block" id="pubmed-table">
27-
{% include "includes/pubmed_table.html" %}
27+
{% include "publications/includes/pubmed_table.html" %}
2828
</div>
2929
</div>
3030
{% endblock %}

0 commit comments

Comments
 (0)