Skip to content

Commit

Permalink
Make consistent html titles with breadcrumbs for cases app (#3581)
Browse files Browse the repository at this point in the history
This is part of Task 1 under issue
#3556 aiming to fix
inconsistent HTML titles in GC.

Each app will have a PR to make sure titles are there for all pages that
have a breadcrumbs and that titles matche the breadcrumbs as described
in issue #3556
  • Loading branch information
ammar257ammar authored Oct 7, 2024
1 parent 2886fd9 commit 3b2fa9e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
{% load pathlib %}
{% load static %}

{% block title %}Upload Session {{ object.pk }} - {{ block.super }}{% endblock %}
{% block title %}
{{ object.pk }} - Uplaods - {{ block.super }}
{% endblock %}

{% block breadcrumbs %}
<ol class="breadcrumb">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{% extends "datatables/list_base.html" %}
{% load humanize %}

{% block title %}Upload Sessions - {{ block.super }}{% endblock %}
{% block title %}
Uploads - {{ block.super }}
{% endblock %}

{% block breadcrumbs %}
<ol class="breadcrumb">
Expand Down

0 comments on commit 3b2fa9e

Please sign in to comment.