r/a=LpSolit git-svn-id: svn://10.0.0.236/trunk@264125 18797224-902f-48f8-a5cc-f745e15eee43
75 lines
2.6 KiB
Cheetah
75 lines
2.6 KiB
Cheetah
[%# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
#
|
|
# This Source Code Form is "Incompatible With Secondary Licenses", as
|
|
# defined by the Mozilla Public License, v. 2.0.
|
|
#%]
|
|
|
|
[%# Migration note: this whole file corresponds to the old %commandmenu%
|
|
substitution param in 'footerhtml' %]
|
|
|
|
<ul id="useful-links">
|
|
<li id="links-actions">
|
|
[% PROCESS "global/common-links.html.tmpl" qs_suffix = "_bottom" %]
|
|
</li>
|
|
|
|
[%# Saved searches %]
|
|
|
|
[% IF user.showmybugslink OR user.queries.size
|
|
OR user.queries_subscribed.size
|
|
%]
|
|
[% print_pipe = 0 %]
|
|
<li id="links-saved">
|
|
<ul class="links">
|
|
[% IF user.showmybugslink %]
|
|
[% filtered_username = user.login FILTER uri %]
|
|
<li><a href="[% Param('mybugstemplate').replace('%userid%', filtered_username) %]">My [% terms.Bugs %]</a></li>
|
|
[% print_pipe = 1 %]
|
|
[% END %]
|
|
|
|
[% FOREACH q = user.queries %]
|
|
[% IF q.link_in_footer %]
|
|
<li>[% '<span class="separator">| </span>' IF print_pipe %]
|
|
<a href="buglist.cgi?cmdtype=runnamed&namedcmd=[% q.name FILTER uri %]">[% q.name FILTER html %]</a></li>
|
|
[% print_pipe = 1 %]
|
|
[% END %]
|
|
[% END %]
|
|
[% new_line = print_pipe %]
|
|
[% print_pipe = 0 %]
|
|
[% FOREACH q = user.queries_subscribed %]
|
|
[% IF new_line %]
|
|
<br>
|
|
[% new_line = 0 %]
|
|
[% END %]
|
|
<li>
|
|
[% '<span class="separator">| </span>' IF print_pipe %]
|
|
<a href="buglist.cgi?cmdtype=dorem&remaction=run&namedcmd=
|
|
[% q.name FILTER uri %]&sharer_id=
|
|
[% q.user.id FILTER uri %]"
|
|
class="shared"
|
|
title="Shared by [% q.user.identity FILTER html %]"
|
|
>[% q.name FILTER html FILTER no_break %]</a></li>
|
|
[% print_pipe = 1 %]
|
|
[% END %]
|
|
</ul>
|
|
</li>
|
|
[% END %]
|
|
|
|
[% IF user.reports.size %]
|
|
<li id="reports-saved">
|
|
<ul class="links">
|
|
[% FOREACH r = user.reports %]
|
|
<li>[% '<span class="separator">| </span>' IF print_pipe %]
|
|
<a href="report.cgi?[% r.query FILTER html %]&saved_report_id=
|
|
[%~ r.id FILTER uri %]">[% r.name FILTER html %]</a></li>
|
|
[% print_pipe = 1 %]
|
|
[% END %]
|
|
</ul>
|
|
</li>
|
|
[% END %]
|
|
|
|
[%# Sections of links to more things users can do on this installation. %]
|
|
[% Hook.process("end") %]
|
|
</ul>
|