]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/node/permanent_link.html
b85249bd21b62a26d2a4fa5ede4039ad3e2769d5
[osqa.git] / forum / skins / default / templates / node / permanent_link.html
1 {% load i18n %}
2
3 <p>
4 {% blocktrans %}
5 Would you like to copy the permanent link to your clipboard?
6 {% endblocktrans %}
7 </p>
8
9 {% spaceless %}
10 <p><label for="permanent_link_url">{% trans "Permanent link" %}:</label></p>
11 <p><input id="permanent_link_url" name="permanent_link_url" size="64" style="font-size: 12px; width: 330px" readonly="readonly" type="text" value="{{ url }}" /></p>
12 {% endspaceless %}
13
14 <script type="text/javascript">
15 $(document).ready(function() {
16     // We highlight the content of the text field on click event
17     $('#permanent_link_url').click(function() {
18         $(this).select();
19     })
20 })
21 </script>