diff --git a/octoprint_CalibrationTools/templates/macros.jinja2 b/octoprint_CalibrationTools/templates/macros.jinja2 index 5d9e7b8..766ebb1 100644 --- a/octoprint_CalibrationTools/templates/macros.jinja2 +++ b/octoprint_CalibrationTools/templates/macros.jinja2 @@ -14,7 +14,9 @@ {% macro quote(content, cite, class) %}
{% endmacro %} diff --git a/octoprint_CalibrationTools/templates/tabs/tab-doc.jinja2 b/octoprint_CalibrationTools/templates/tabs/tab-doc.jinja2 index 871f4d3..da9fa03 100644 --- a/octoprint_CalibrationTools/templates/tabs/tab-doc.jinja2 +++ b/octoprint_CalibrationTools/templates/tabs/tab-doc.jinja2 @@ -1,4 +1,3 @@ +{% import "macros.jinja2" as snipped %} - Something in documentation tab... - - \ No newline at end of file +{{ snipped.quote("For using this plugin, I strongly recommending you to read teachingtechyt.github.io","", "text-warning") }} \ No newline at end of file diff --git a/octoprint_CalibrationTools/templates/tabs/tab-esteps.jinja2 b/octoprint_CalibrationTools/templates/tabs/tab-esteps.jinja2 index 02419f9..60cb3d0 100644 --- a/octoprint_CalibrationTools/templates/tabs/tab-esteps.jinja2 +++ b/octoprint_CalibrationTools/templates/tabs/tab-esteps.jinja2 @@ -1,6 +1,15 @@ {% import "macros.jinja2" as snipped %} -{{ snipped.subSection("Test parameters", true) }} +{{ snipped.subSection("Process description", true) }} +{{ snipped.quote(" +This calibration is best done with the extruder detached from the hot end, so no restriction is present on the movement. If it is convenient, you can partially disassemble the printer so the output of the extruder is +open and the filament exits in free air. If this is inconvenient, the process below aims to minimize restrictions by extruding very slowly and with a slightly higher temperature. The results from this should still be +reliable. +", " +For more information about how to use this visit teachingtechyt.github.io +", "text-warning") }} + +{{ snipped.subSection("Test parameters") }}{{ _(content) }}
+ {% if cite %} {{ cite }} + {%endif %}