source: indico/indico/MaKaC/webinterface/tpls/Footer.CERN.tpl @ d6189d

burotelexp-instant-messaginghello-world-walkthroughipv6new-improved-taskdaemonnew-webexprov-dual-interfacev0.97-seriesv0.98-seriesv0.98.2v0.98.3v0.98b1v0.98b2v0.99v1.0v1.1
Last change on this file since d6189d was d6189d, checked in by Jose Benito <jose.benito.gonzalez@…>, 4 years ago

[FIXED] Several layout fixes

Squashed commit of the following:

commit 5023d4ec3848284cf26f09844bb93644796c7aee
Author: Jose Benito <jose.benito.gonzalez@…>
Date: Tue Jul 21 16:25:00 2009 +0200

[MINOR] changed font size for titles in meetings TT

commit f912ea9d5041def6bac683a9af62ed5c8640c1dd
Author: Jose Benito <jose.benito.gonzalez@…>
Date: Tue Jul 21 11:22:36 2009 +0200

[FIXED] Guess type of text area for minutes edition

commit a1c2d5ee1898cabaa58b8cd7c154727c08782e90
Author: Jose Benito <jose.benito.gonzalez@…>
Date: Tue Jul 21 09:43:58 2009 +0200

[MINOR] Moved Indico version from footer to About

commit 5807a8697be35de43ae6cebb0cbeab57028e5801
Author: Jose Benito <jose.benito.gonzalez@…>
Date: Mon Jul 20 18:48:06 2009 +0200

[FIXED] Footer had wrong colors for admins style in meetings

commit 13083143759c14adb6b7f9cce0182dc972c02bbf
Author: Jose Benito <jose.benito.gonzalez@…>
Date: Mon Jul 20 18:35:57 2009 +0200

[FIXED] Reduced size of material boxes

commit 97f7c61d654b2b1d7fa271f2c25a332c434ab44c
Author: Jose Benito <jose.benito.gonzalez@…>
Date: Mon Jul 20 18:12:26 2009 +0200

[FIXED] white space in meeting layouts and progress bar message

commit 6e9c1fe04dcc7d7802f3952c26a6d142d8e785ae
Author: Jose Benito <jose.benito.gonzalez@…>
Date: Mon Jul 20 17:09:13 2009 +0200

[FIXED] when DPI big, meeting page was not rendering fine

commit c16fda6d443d70806e3945d0abfcebea9161bf7c
Author: Jose Benito <jose.benito.gonzalez@…>
Date: Mon Jul 20 16:19:44 2009 +0200

[FIXED] Fixed template bug in confsignin and email bad format for registration

  • Property mode set to 100644
File size: 1.6 KB
Line 
1<% import MaKaC.common.Configuration as Configuration %>
2<%!
3try:
4    dark
5except NameError:
6    dark = False;
7%>
8
9<!-- TODO: remove? -->
10<script type="text/javascript">
11function envoi(){
12        //alert('Le code de la langue choisie est '+document.forms["changeSesLang"].elements["lang"].value)
13        document.forms["changeSesLang"].submit()
14}
15</script>
16
17<!-- TODO: remove permanently? -->
18<% if isFrontPage: %>
19        <div id="policyOfUse">
20                <h1>Policy of Use</h1>
21                If you want to use it for CERN-related projects, please contact <a href="mailto:indico-support@cern.ch"> Indico support</a>.
22        Non-CERN institutes may install the Indico software locally under GNU General Public License
23        (see the <a href="http://cern.ch/indico">project web site</a>).
24        </div>
25<% end %>
26
27<div id="poweredBy" class="footer<% if dark == True: %> footerDark<% end %>">
28            <a href="http://www.cern.ch">
29            <img src="<%= systemIcon("cern_small") %>" alt="Indico - Integrated Digital Conference" />
30            </a>
31            Powered by CERN
32           
33            <% if Configuration.Config.getInstance().getWorkerName()!="": %>
34                <span style="display: none;"><%= Configuration.Config.getInstance().getWorkerName() %></span>
35            <% end %>
36           
37            <% if shortURL != "" and not isFrontPage: %>
38                <span class="separator">|</span>
39                <span><%= shortURL %></span>
40            <% end %>
41       
42            <% if modificationDate != "": %>
43                <span class="separator">|</span>
44                <span><%= _("Last modified: ") + modificationDate %></span>
45            <% end %>
46</div>
47
Note: See TracBrowser for help on using the repository browser.