~katiekitty/+junk/solidstate

« back to all changes in this revision

Viewing changes to solidstate/trunk/manager/templates/.svn/text-base/manager_header.tpl.svn-base

  • Committer: root
  • Date: 2010-01-13 07:44:31 UTC
  • Revision ID: root@ds3-vamp.cs-monitor.cz.cc-20100113074431-kt8ceoeznpjg22x7
Reviving the project

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
        <div class="content_mast">
 
2
          <h1>{$company_name}</h1>
 
3
 
 
4
          <p class="navigation">
 
5
 
 
6
            {* 
 
7
              Iterate through the location stack and produce a link
 
8
              for each item.  The last item does not have a link, but is
 
9
              printed.
 
10
            *}
 
11
            {section name="page" loop=$location_stack}
 
12
 
 
13
              {if $smarty.section.page.last}
 
14
                {$location_stack[page].name|capitalize}
 
15
              {else}
 
16
                <a href="{$location_stack[page].url}">{$location_stack[page].name|capitalize}</a> >
 
17
              {/if}
 
18
 
 
19
            {sectionelse}
 
20
 
 
21
              {echo phrase="HOME"}
 
22
 
 
23
            {/section}
 
24
 
 
25
          </p>
 
26
 
 
27
          <p class="user_display">
 
28
            {echo phrase="LOGGED_IN_AS"}: {$username}
 
29
            (<a href="manager_content.php?page=home&action=logout">{echo phrase="LOGOUT"}</a>)
 
30
          </p>
 
31
 
 
32
          <p class="ip_display">
 
33
            {$version} {echo phrase="ON"} {$machine}
 
34
          </p>
 
35
 
 
36
        </div>