diff --git a/.gitea/issue_template/api_docs.yaml b/.gitea/issue_template/api_docs.yaml new file mode 100644 index 00000000000..d9dd642240c --- /dev/null +++ b/.gitea/issue_template/api_docs.yaml @@ -0,0 +1,39 @@ +name: Python API Documentation +about: File a bug report for the python API documentation +labels: + - "Type/Report" + - "Status/Needs Triage" + - "Priority/Normal" +body: + - type: markdown + attributes: + value: | + ### Instructions + Thank you for reporting an issue with Blender's Python API documentation. + If you meant to file an issue with the software please create a normal [bug report](https://projects.blender.org/blender/blender/issues/new?template=.gitea%2fissue_template%2fbug.yaml). + + Please add to the description below explain the issue at hand. + Use **Report issue on this page** at the bottom of the page with an issue to autofill some information. + + Including details, examples, or suggested fixes are appreated and will help resolve the issue as soon as possible. + + - type: textarea + id: body + attributes: + label: "Description" + hide_label: true + value: | + **Page Information** + Blender Version: (example: 4.0, edbf15d3c044, main) + [Permanent Link](https://docs.blender.org/api/current/) (Update me to the URL of the page with an issue) + + **Short description of issue** + [Please fill out a short description of the issue here] + + + - type: markdown + attributes: + value: | + ### Help the developers + + Bug fixing is important, the developers will handle reports swiftly. For that reason, carefully provide exact steps and a **small and simple Python scipt** if neccesarry to reproduce the problem. You do your half of the work, then we do our half! diff --git a/doc/python_api/templates/footer.html b/doc/python_api/templates/footer.html new file mode 100644 index 00000000000..c31961acd06 --- /dev/null +++ b/doc/python_api/templates/footer.html @@ -0,0 +1,14 @@ +{# For the "Report Issue" button on the bottom of pages. #} +{%- extends "!footer.html" %} +{%- block extrafooter %} +{%- if not pagename in ("search", "404", "genindex") and hasdoc(pagename) %} + +{%- endif %} +{% endblock %} \ No newline at end of file