Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add HTML formatting to pre-commit #966

Merged
merged 36 commits into from
Jul 12, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
d16374a
Update email_client.py
michplunkett Jul 10, 2023
e7e2e34
Update __init__.py
michplunkett Jul 10, 2023
c24f168
Add djlint
michplunkett Jul 10, 2023
6e7c2d2
Update requirements.txt
michplunkett Jul 10, 2023
34c032a
Update .pre-commit-config.yaml
michplunkett Jul 10, 2023
0c67ce3
Merge branch 'develop' into add_html_linter
michplunkett Jul 10, 2023
36ea665
Update requirements.txt
michplunkett Jul 10, 2023
80cfb7f
Reformat using djlint
michplunkett Jul 10, 2023
45683b0
Update incident_detail.html
michplunkett Jul 10, 2023
8d232c7
Update list_officer.html
michplunkett Jul 10, 2023
b26ea17
Update .pre-commit-config.yaml
michplunkett Jul 10, 2023
a7b1d90
Linting update
michplunkett Jul 10, 2023
0f438ec
linting
michplunkett Jul 10, 2023
a52f3fe
Formatting
michplunkett Jul 10, 2023
628bd3e
doing it
michplunkett Jul 10, 2023
a161619
Update links_and_videos_row.html
michplunkett Jul 10, 2023
a4324c4
Update .pre-commit-config.yaml
michplunkett Jul 11, 2023
dd1152e
js and css formatting
michplunkett Jul 11, 2023
86cf142
Update .pre-commit-config.yaml
michplunkett Jul 11, 2023
e505a66
Update .pre-commit-config.yaml
michplunkett Jul 11, 2023
d76a348
Update .pre-commit-config.yaml
michplunkett Jul 11, 2023
d516172
4 spaces -> 2 spaces
michplunkett Jul 11, 2023
a54a1f1
Update about.html
michplunkett Jul 11, 2023
45615f6
Update .pre-commit-config.yaml
michplunkett Jul 11, 2023
db29420
Linting
michplunkett Jul 11, 2023
2e633b1
Update .pre-commit-config.yaml
michplunkett Jul 11, 2023
371b160
making progress
michplunkett Jul 11, 2023
4aa32fd
Update complaint.html
michplunkett Jul 11, 2023
8811d76
Update .pre-commit-config.yaml
michplunkett Jul 11, 2023
1169467
Update .pre-commit-config.yaml
michplunkett Jul 11, 2023
dda6b81
Update .pre-commit-config.yaml
michplunkett Jul 11, 2023
d80f251
Update test_officer_and_department.py
michplunkett Jul 11, 2023
c283ad2
Update about.html
michplunkett Jul 11, 2023
cf0ac6e
Merge branch 'develop' into add_html_linter
michplunkett Jul 12, 2023
d25f670
Update test_officer_and_department.py
michplunkett Jul 12, 2023
9c8cef3
Merge branch 'develop' into add_html_linter
michplunkett Jul 12, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Linting update
  • Loading branch information
michplunkett committed Jul 10, 2023
commit a7b1d90b542b4ea7703e3721c6cc995149f48949
6 changes: 4 additions & 2 deletions OpenOversight/app/templates/403.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{% extends "base.html" %}
{% block title %}Forbidden{% endblock %}
{% block title %}
Forbidden
{% endblock title %}
{% block content %}
<div class="container theme-showcase" role="main">
<h1>Forbidden</h1>
<p>
You do not have permissions to view this page. <a href="{{ url_for("main.index") }}">Return to homepage</a>.
</p>
</div>
{% endblock %}
{% endblock content %}
6 changes: 4 additions & 2 deletions OpenOversight/app/templates/404.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{% extends "base.html" %}
{% block title %}Page Not Found{% endblock %}
{% block title %}
Page Not Found
{% endblock title %}
{% block content %}
<div class="container theme-showcase" role="main">
<h1>Page Not Found</h1>
<p>
We couldn't find the page you are looking for. <a href="{{ url_for("main.index") }}">Return to homepage</a>.
</p>
</div>
{% endblock %}
{% endblock content %}