~fkhan-zivios/zivios/devel

« back to all changes in this revision

Viewing changes to application/modules/ca/views/scripts/computer/dashview.phtml

  • Committer: Faraz Khan
  • Date: 2008-09-15 13:29:33 UTC
  • Revision ID: fkhan@zivios.org-20080915132933-d27jml5l29xw4gsr
Initial release to bazaar, code in sync with 0.5.0-release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
 * Copyright (c) 2008 Zivios, LLC.
 
4
 *
 
5
 * This file is part of Zivios.
 
6
 *
 
7
 * Zivios is free software: you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation, either version 3 of the License, or
 
10
 * (at your option) any later version.
 
11
 *
 
12
 * Zivios is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with Zivios.  If not, see <http://www.gnu.org/licenses/>.
 
19
 *
 
20
 * @package             Zivios
 
21
 * @copyright   Copyright (c) 2008 Zivios, LLC. (http://www.zivios.org)
 
22
 * @license             http://www.zivios.org/legal/license
 
23
 * @version             $Id: dashview.phtml 890 2008-08-22 11:52:49Z mhashmi $
 
24
 **/
 
25
?>
 
26
<div id="capgupdate">
 
27
        <div style="padding-left: 10px;">
 
28
                <div style="background-color: #f6f6f6; width: 500px;">
 
29
 
 
30
                <div style="width: 140px;" class="floatleft">Certificate Issue Date</div>
 
31
                <div style="width: 350px;" class="floatleft"><?php echo $this->dashboardData['validFrom']; ?></div>
 
32
                <div class="clear"></div>
 
33
 
 
34
                <div style="width: 140px;" class="floatleft">Certificate Valid Till</div>
 
35
                <div style="width: 350px;" class="floatleft"><?php echo $this->dashboardData['validTo']; ?></div>
 
36
                <div class="clear"></div>
 
37
 
 
38
                <div style="width: 140px;" class="floatleft">Common Name</div>
 
39
                <div style="width: 350px;" class="floatleft"><?php echo $this->dashboardData['subject']['CN']; ?></div>
 
40
                <div class="clear"></div>
 
41
 
 
42
                <div style="width: 140px;" class="floatleft">Serial</div>
 
43
                <div style="width: 350px;" class="floatleft"><?php echo $this->dashboardData['serialNumber']; ?></div>
 
44
                <div class="clear"></div>
 
45
 
 
46
                <div style="width: 140px;" class="floatleft">Hash</div>
 
47
                <div style="width: 350px;" class="floatleft"><?php echo $this->dashboardData['hash']; ?></div>
 
48
                <div class="clear"></div>
 
49
                </div>
 
50
        </div>
 
51
</div>