common-links.html.tmpl 4.32 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
[%# 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.
  #%]

[% DEFAULT qs_suffix = "" %]
[% USE Bugzilla %]

<ul class="links">
  <li><a href="./">В начало</a></li>
  <li><span class="separator">| </span><a href="enter_bug.cgi">Создать</a></li>
  <li><span class="separator">| </span><a href="describecomponents.cgi">Список</a></li>
  <li><span class="separator">| </span><a href="query.cgi">Поиск</a></li>

  <li class="form">
    <span class="separator">| </span>
    <form action="buglist.cgi" method="get"
        onsubmit="if (this.quicksearch.value == '')
                  { alert('Введите условие поиска.');
                    return false; } return true;">
    <input type="hidden" id="no_redirect[% qs_suffix FILTER html %]" name="no_redirect" value="0">
    <script type="text/javascript">
      if (history && history.replaceState) {
        var no_redirect = document.getElementById("no_redirect[% qs_suffix FILTER js %]");
        no_redirect.value = 1;
      }
    </script>
    <input class="txt" type="text" id="quicksearch[% qs_suffix FILTER html %]" name="quicksearch" 
           title="Быстрый поиск" value="[% quicksearch FILTER html %]">
    <input class="btn" type="submit" value="Искать" 
           id="find[% qs_suffix FILTER html %]">
    [%-# Work around FF bug: keep this on one line %]</form>
  <a href="page.cgi?id=quicksearch.html" title="Справка по быстрому поиску">[?]</a></li>

  <li><span class="separator">| </span><a href="report.cgi">Отчеты</a></li>

  <li>
    [% IF Param('shutdownhtml') || Bugzilla.has_flags %]
      <span class="separator">| </span>
      [% IF user.id %]
        <a href="request.cgi?requester=[% user.login FILTER uri %]&amp;requestee=
                 [% user.login FILTER uri %]&amp;do_union=1&amp;group=type&amp;action=queue">Мои согласования</a>
      [% ELSE %]
        <a href="request.cgi">Согласования</a>
      [% END %]
    [% END %]
  [%-# Work around FF bug: keep this on one line %]</li>

52 53
  [% Hook.process('action-links') %]

54 55
  [% IF user.login %]
    <li><span class="separator">| </span><a href="userprefs.cgi">Параметры</a></li>
56
    [% IF user.can_administer %]
57 58 59 60 61 62 63 64 65 66
      <li><span class="separator">| </span><a href="admin.cgi">Администрирование</a></li>
    [% END %]

    [% PROCESS link_to_documentation %]

    <li>
      <span class="separator">| </span>
      [% IF user.authorizer.can_logout %]
        <a href="index.cgi?logout=1">Завершить&nbsp;сеанс</a>
      [% ELSE %]
67
        Пользователь&nbsp;
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
      [% END %]
      [% IF sudoer %]
        [%+ sudoer.login FILTER html %] (<b>от имени
        [%+ user.login FILTER html %]</b>
        <a href="relogin.cgi?action=end-sudo">завершить сеанс</a>)
      [% ELSE %]
        [%+ user.login FILTER html %]
      [% END %]
    [%-# Work around FF bug: keep this on one line %]</li>
  [% ELSE %]
  
    [% PROCESS link_to_documentation %]
    
    [% IF Param('createemailregexp')
          && user.authorizer.user_can_create_account %]
      <li id="new_account_container[% qs_suffix FILTER html %]">
        <span class="separator">| </span>
        <a href="createaccount.cgi">Регистрация</a>
      </li>
    [% END %]

    [%# Only display one login form when we're on a LOGIN_REQUIRED page. That
      # way, we're guaranteed that the user will use the form that has 
      # hidden_fields in it (the center form) instead of this one. Also, it's
      # less confusing to have one form (as opposed to  three) when you're 
      # required to log in.
      #%]
    [% IF user.authorizer.can_login && !Bugzilla.page_requires_login %]
      [% PROCESS "account/auth/login-small.html.tmpl" %]
    [% END %]
  [% END %]
</ul>

[% Hook.process("link-row") %]
[% BLOCK link_to_documentation %]
103
    [% IF doc_section %]
104 105 106 107 108 109
      <li>
        <span class="separator">| </span>
        <a href="[% docs_urlbase _ doc_section FILTER html %]" target="_blank">Справка</a>
      </li>
    [% END %]
[% END %]