Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ repos:
- mdformat-gfm
- mdformat-gfm-alerts
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.16.5
rev: v0.16.6
hooks:
- id: ruff-check
args: [--fix, --exit-non-zero-on-fix]
Expand All @@ -44,7 +44,7 @@ repos:
hooks:
- id: yamlfmt
- repo: https://github.com/djlint/djLint
rev: v1.44.2
rev: v1.45.2
hooks:
- id: djlint-reformat-django
- repo: https://github.com/sphinx-contrib/sphinx-lint
Expand Down
2 changes: 1 addition & 1 deletion tests/testapp/templates/testapp/workflow_detail.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'testapp/base.html' %}
{% extends "testapp/base.html" %}
{% block body %}
<div class="w3-card w3-panel w3-content w3-card-4 w3-white">
<div class="w3-center">{{ object.get_instance_graph_svg }}</div>
Expand Down
4 changes: 2 additions & 2 deletions tests/testapp/templates/testapp/workflow_form.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{% extends 'testapp/base.html' %}
{% extends "testapp/base.html" %}
{% block body %}
<div class="w3-card w3-content w3-card-4 w3-white">
<div class="w3-center">{{ object.get_workflow_graph }}</div>
<form method="POST" class="w3-container">
<form method="post" class="w3-container">
{% csrf_token %}
{{ form.as_p }}
<p>
Expand Down
Loading