Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
🔧 Test
Browse files Browse the repository at this point in the history
  • Loading branch information
Gary-H9 committed Aug 5, 2024
1 parent a7144d3 commit fef1ed4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion streamingapp/templates/streamingapp/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
<script src="{% static 'assets/js/govuk.js' %}"></script>
<script>window.GOVUKFrontend.initAll()</script>
</body>
{% include "includes/footer.html" %}
{% include "streamingapp/includes/footer.html" %}
</html>
6 changes: 3 additions & 3 deletions streamingapp/templates/streamingapp/includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<!-- <div class="moj-header__logo" style="display: flex; align-items: center; justify-content: start; gap: 10px;"> -->
<div class="moj-header__logo">

{% include "includes/moj_header.svg" %}
{% include "streamingapp/includes/moj_header.svg" %}

<a class="moj-header__link moj-header__link--organisation-name" href="{{ header_organisation_url }}">Ministry of Justice</a>

Expand All @@ -17,7 +17,7 @@

<ul class="moj-header__navigation-list">
{% for item in header_nav_items %}
{% include "includes/nav_item.html" with item=item level="moj-header__navigation-" %}
{% include "streamingapp/includes/nav_item.html" with item=item level="moj-header__navigation-" %}
{% endfor %}
</ul>

Expand All @@ -28,4 +28,4 @@

</header>

{% include "includes/navigation.html" %}
{% include "streamingapp/includes/navigation.html" %}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<ul class="moj-primary-navigation__list">
{% for item in nav_items %}
{% include "includes/nav_item.html" with level="moj-primary-navigation__" %}
{% include "streamingapp/includes/nav_item.html" with level="moj-primary-navigation__" %}
{% endfor %}
</ul>

Expand Down
2 changes: 1 addition & 1 deletion streamingapp/templates/streamingapp/input_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

{% block content %}

{% include "includes/conversation.html" %}
{% include "streamingapp/includes/conversation.html" %}

{% endblock %}

0 comments on commit fef1ed4

Please sign in to comment.