-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1725 from dchiller/update-bootstrap-5
Update bootstrap 5
- Loading branch information
Showing
70 changed files
with
3,936 additions
and
3,954 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,15 @@ | ||
{% extends 'base.html' %} | ||
{% load static %} | ||
<html lang="en"> | ||
<head> | ||
<!-- Required meta tags --> | ||
<meta name="google-site-verification" content="EwxpNpZ_ZOQnetVVLELGn5-aD_beT3EQqUuI6glkArI" /> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, | ||
initial-scale=1, shrink-to-fit=no"> | ||
<meta name="robots" content="noindex"> | ||
<title>400 Bad Request | Cantus Database</title> | ||
<!-- Bootstrap CSS --> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous"> | ||
<style> | ||
body { | ||
margin-bottom: 30px; | ||
/* Margin bottom by footer height */ | ||
background-image: url('{% static "background.jpg" %}'); | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<main role="main" class="content container pt-4"> | ||
{% block content %} | ||
<div class="container"> | ||
{% block title %}<title>400 Bad Request | Cantus Database</title>{% endblock %} | ||
{% block content %} | ||
<div class="container error-page-container"> | ||
<div class="row"> | ||
<div class="p-3 col-12 bg-white rounded"> | ||
<h3>400</h3> | ||
<h5>Bad Request</h5> | ||
<br> | ||
<br /> | ||
<p>Your request couldn't be understood by the server.</p> | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock %} | ||
</main> | ||
</body> | ||
|
||
</html> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
{% extends "base.html" %} | ||
{% block title %} | ||
<title>403 Access Denied | Cantus Database</title> | ||
{% endblock %} | ||
|
||
{% block title %}<title>403 Access Denied | Cantus Database</title>{% endblock %} | ||
{% block content %} | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="p-3 col-12 bg-white rounded"> | ||
<h3>403</h3> | ||
<h5>Access denied</h5> | ||
<br> | ||
<dl> | ||
<dd>You are not authorized to access this page.</dd> | ||
{% if not user.is_authenticated %} | ||
<dd>This could be because you are not currently logged in. If you are a contributor and believe you should be able to see this page, try <a href="{% url 'login' %}?next={{ request.path }}">logging in</a>.</dd> | ||
{% endif %} | ||
</dl> | ||
<div class="container error-page-container"> | ||
<div class="row"> | ||
<div class="p-3 col bg-white rounded"> | ||
<h3>403</h3> | ||
<h5>Access denied</h5> | ||
<br /> | ||
<dl> | ||
<dd> | ||
You are not authorized to access this page. | ||
</dd> | ||
{% if not user.is_authenticated %} | ||
<dd> | ||
This could be because you are not currently logged in. If you are a contributor and believe you should be able to see this page, try <a href="{% url 'login' %}?next={{ request.path }}">logging in</a>. | ||
</dd> | ||
{% endif %} | ||
</dl> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,14 @@ | ||
{% extends "base.html" %} | ||
{% block title %} | ||
<title>404 Not Found | Cantus Database</title> | ||
{% endblock %} | ||
|
||
{% block title %}<title>404 Not Found | Cantus Database</title>{% endblock %} | ||
{% block content %} | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="p-3 col-12 bg-white rounded"> | ||
<h3>404</h3> | ||
<h5>Page not found</h5> | ||
<br> | ||
<p> | ||
We couldn't find a page at this address. | ||
</p> | ||
<div class="container error-page-container"> | ||
<div class="row"> | ||
<div class="p-3 col bg-white rounded"> | ||
<h3>404</h3> | ||
<h5>Page not found</h5> | ||
<br /> | ||
<p>We couldn't find a page at this address.</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock %} | ||
{% endblock %} |
Oops, something went wrong.