]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/node/permanent_link.html
#OSQA-388, showing message to the current user on submit, the username of the awarded...
[osqa.git] / forum / skins / default / templates / node / permanent_link.html
1 {% load i18n %}
2
3 {% spaceless %}
4 <table>
5     <tr>
6         <td><label for="permanent_link_url">{% trans "Permanent link" %}:</label></td>
7         <td><input id="permanent_link_url" readonly="readonly" type="text" value="{{ url }}" /></td>
8     </tr>
9 </table>
10 {% endspaceless %}
11
12 <script type="text/javascript">
13 $(document).ready(function() {
14     // We highlight the content of the text field on click event
15     $('#permanent_link_url').click(function() {
16         $(this).select();
17     })
18 })
19 </script>