Add djhtml
This commit is contained in:
parent
e096dd8cf5
commit
512f9cd3b9
6 changed files with 20 additions and 11 deletions
|
@ -108,6 +108,11 @@ curlylint:
|
|||
script:
|
||||
- curlylint .
|
||||
|
||||
djhtml:
|
||||
<<: *python_test_template
|
||||
script:
|
||||
- git ls-files '*.html' | xargs djhtml --check --tabwidth 2
|
||||
|
||||
prettier:
|
||||
<<: *node_test_template
|
||||
script:
|
||||
|
|
2
justfile
2
justfile
|
@ -28,6 +28,7 @@ test *ARGS:
|
|||
format:
|
||||
black .
|
||||
isort .
|
||||
git ls-files '*.html' | xargs djhtml -i --tabwidth 2
|
||||
npm run format
|
||||
|
||||
lint: lint_python lint_node
|
||||
|
@ -38,6 +39,7 @@ lint_python:
|
|||
flake8
|
||||
mypy . --show-error-codes
|
||||
curlylint .
|
||||
git ls-files '*.html' | xargs djhtml --check --tabwidth 2
|
||||
|
||||
@lint_node:
|
||||
npm run lint
|
||||
|
|
|
@ -11,3 +11,4 @@ django-debug-toolbar
|
|||
types-requests
|
||||
mypy
|
||||
curlylint
|
||||
djhtml
|
||||
|
|
|
@ -30,6 +30,7 @@ django-rq==2.5.1 # via -r requirements/base.txt
|
|||
django-taggit==2.1.0 # via -r requirements/base.txt, wagtail
|
||||
django-treebeard==4.5.1 # via -r requirements/base.txt, wagtail
|
||||
djangorestframework==3.13.1 # via -r requirements/base.txt, wagtail
|
||||
djhtml==1.5.1 # via -r requirements/dev.in
|
||||
draftjs-exporter==2.1.7 # via -r requirements/base.txt, wagtail
|
||||
et-xmlfile==1.1.0 # via -r requirements/base.txt, openpyxl
|
||||
flake8==4.0.1 # via -r requirements/dev.in
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en-GB">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Internal server error</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
</head>
|
||||
<body>
|
||||
<h1>Internal server error</h1>
|
||||
<h2>Sorry, there seems to be an error. Please try again soon.</h2>
|
||||
</body>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Internal server error</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
</head>
|
||||
<body>
|
||||
<h1>Internal server error</h1>
|
||||
<h2>Sorry, there seems to be an error. Please try again soon.</h2>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
{% wagtailuserbar %}
|
||||
|
||||
{% cache 3600 "navbar" %}
|
||||
{% navbar %}
|
||||
{% navbar %}
|
||||
{% endcache %}
|
||||
|
||||
{% block main %}
|
||||
|
@ -35,7 +35,7 @@
|
|||
{% endblock %}
|
||||
|
||||
{% cache 3600 "footer" %}
|
||||
{% footer %}
|
||||
{% footer %}
|
||||
{% endcache %}
|
||||
|
||||
<script async defer type="text/javascript" src="{% static 'js/base.js' %}"></script>
|
||||
|
|
Loading…
Reference in a new issue