]> git.openstreetmap.org Git - osqa.git/blob - forum_modules/updater/templates/index.html
creating some views for the update checker and creating the functions that get the...
[osqa.git] / forum_modules / updater / templates / index.html
1 {% extends basetemplate %}
2
3 {% load i18n %}
4
5 {% block adminjs %}
6 {{ block.super }}
7 <script type="text/javascript">
8 $(function() {
9
10     $('#check_for_updates').live('click', function() {
11         alert("Ok")
12     })
13 });
14 </script>
15 {% endblock %}
16
17 {% block subtitle %}
18     {% trans "Update Checker" %}
19 {% endblock %}
20 {% block description %}
21     {% trans "Use the OSQA update server to check for updates" %}
22 {% endblock %}
23
24 {% block admincontent %}
25
26 <a href="javascript:void(0);" id="check_for_updates" class="button">{% trans "Check for Updates" %}</a>
27
28 {% endblock %}