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

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Sep 6, 2023
1 parent d78bca5 commit e13671d
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 8 deletions.
4 changes: 3 additions & 1 deletion server/apps/identity/templates/identity/pages/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

{% load static %}

{% block title %}Регистрация{% endblock title %}
{% block title %}
Регистрация
{% endblock title %}
{% block content %}
<main>
<div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

{% load static %}

{% block title %}Регистрация{% endblock title %}
{% block title %}
Регистрация
{% endblock title %}
{% block content %}
<main>
<div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

{% load static %}

{% block title %}Редактировать профиль{% endblock title %}
{% block title %}
Редактировать профиль
{% endblock title %}
{% block content %}
<main>
<div>
Expand Down
4 changes: 3 additions & 1 deletion server/apps/pictures/templates/pictures/pages/dashboard.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

{% load static %}

{% block title %}Testing Homework{% endblock title %}
{% block title %}
Testing Homework
{% endblock title %}
{% block content %}
<main>
<article>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

{% load static %}

{% block title %}Запись на консультацию с основателем{% endblock title %}
{% block title %}
Запись на консультацию с основателем
{% endblock title %}
{% block content %}
<main>
<h1>Список любимых картинок</h1>
Expand Down
4 changes: 3 additions & 1 deletion server/apps/pictures/templates/pictures/pages/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

{% load static %}

{% block title %}Привет!{% endblock title %}
{% block title %}
Привет!
{% endblock title %}
{% block content %}
<main>
<h1>Добро пожаловать в домашнее задание в курсе по тестированию.</h1>
Expand Down
6 changes: 4 additions & 2 deletions server/common/django/templates/common/_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
{% block title %}{% endblock title %}
{% block title %}
{% endblock title %}
</title>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css" />
</head>
<body>
<div>
{% include 'common/includes/header.html' %}
{% block content %}{% endblock content %}
{% block content %}
{% endblock content %}
</div>
{% include 'common/includes/footer.html' %}
</body>
Expand Down

0 comments on commit e13671d

Please sign in to comment.