~khurshid-alam/gwibber/gwibber-hack

« back to all changes in this revision

Viewing changes to ui/themes/compact/errors.mako

  • Committer: Khurshid Alam
  • Date: 2012-04-06 14:38:38 UTC
  • Revision ID: khurshid.alam@linuxmail.org-20120406143838-nz7hjg8vtzi2wl7i
initial revision

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<%namespace name="base" file="base.mako">
 
2
</%namespace>
 
3
 
 
4
<html>
 
5
  <head>
 
6
    <script src="jquery.js"></script>
 
7
    <style>
 
8
      <%include file="css.mako" /> 
 
9
      <%include file="defaultcss.mako" /> 
 
10
    </style>
 
11
    <script>
 
12
      $(document).ready(function() {
 
13
        $(".toggledupe").show(0).unbind().toggle(
 
14
          function() {$(this).parent().parent().find(".dupes").show(100)},
 
15
          function() {$(this).parent().parent().find(".dupes").hide(100)});
 
16
      });
 
17
    </script>
 
18
  </head>
 
19
  <body>
 
20
    <div class="welcome">
 
21
      <h2>Errors</h2>
 
22
    </div>
 
23
    % if message_store:
 
24
      ${base.errors(message_store)}
 
25
    % endif
 
26
  </body>
 
27
</html>