diff options
Diffstat (limited to 'static/website/templates/ajax-tutorials.html')
-rw-r--r-- | static/website/templates/ajax-tutorials.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/static/website/templates/ajax-tutorials.html b/static/website/templates/ajax-tutorials.html new file mode 100644 index 0000000..7429f59 --- /dev/null +++ b/static/website/templates/ajax-tutorials.html @@ -0,0 +1,4 @@ +<option value="None">Select a Tutorial</option> +{% for tutorial in tutorials %} + <option value="{{ tutorial.tutorial_name }}">{{ tutorial.tutorial_name }}</option> +{% endfor %} |