From 39b957a1b3ef06d5d2e970d185bd19b8823c90e4 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Mon, 26 May 2025 22:01:29 +0200 Subject: [PATCH] Add issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 20 ++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 14 ++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000..37b9294a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,20 @@ +--- +name: Bug report +about: Create a report to help us improve askama +title: '' +labels: bug +assignees: '' + +--- + +**Describe the bug** +What is going wrong? + +**To Reproduce** +Please provide the code showing the bug so it can be reproduced. If possible, a minified version on how to reproduce the bug would be preferred as we would be able to work on it much faster. + +**Askama version** +Which `askama` version are you using? + +**Rust version** +Which `rust` version are using? You can get this information by using `rustc --version`. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 00000000..d422ba8b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,14 @@ +--- +name: Feature request +about: Suggest a feature you'd like askama to have +title: '' +labels: enhancement +assignees: '' + +--- + +Please describe what you'd like to be added. For example: + * Missing jinja feature + * New syntax + * New API + * ...