diff options
Diffstat (limited to 'app/gtd')
-rw-r--r-- | app/gtd/templates/gtd/note_form.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/gtd/templates/gtd/note_form.html b/app/gtd/templates/gtd/note_form.html index 13591e8..006312b 100644 --- a/app/gtd/templates/gtd/note_form.html +++ b/app/gtd/templates/gtd/note_form.html @@ -30,6 +30,7 @@ form .selector label { let params = new URL(document.location).searchParams; document.getElementById('id_title').value = params.get("title"); document.getElementById('id_body_markdown').value = params.get("description"); +document.getElementById('id_url').value = params.get("url"); </script> {% endif %} {% endblock%} |