~alexharrington/xibo/pyclient-1.1.0a22

« back to all changes in this revision

Viewing changes to server/template/pages/display_view.php

  • Committer: Dan Garner
  • Date: 2008-12-14 14:42:52 UTC
  • mto: (1.1.80 Xibo)
  • mto: This revision was merged to the branch mainline in revision 2.
  • Revision ID: mail@dangarner.co.uk-20081214144252-8dosaegtfwvv0dsl
Moved 3rd Party libraries to their own folder.
Updated jQuery to the latest revision and now use jQuery UI instead of individual plugins.

Tabs are not currently working

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
/*
3
 
 * Xibo - Digitial Signage - http://www.xibo.org.uk
4
 
 * Copyright (C) 2006,2007,2008 Daniel Garner and James Packer
5
 
 *
6
 
 * This file is part of Xibo.
7
 
 *
8
 
 * Xibo is free software: you can redistribute it and/or modify
9
 
 * it under the terms of the GNU Affero General Public License as published by
10
 
 * the Free Software Foundation, either version 3 of the License, or
11
 
 * any later version. 
12
 
 *
13
 
 * Xibo is distributed in the hope that it will be useful,
14
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
 * GNU Affero General Public License for more details.
17
 
 *
18
 
 * You should have received a copy of the GNU Affero General Public License
19
 
 * along with Xibo.  If not, see <http://www.gnu.org/licenses/>.
20
 
 */ 
21
 
?>
22
 
<div id="form_container">
23
 
        <div id="form_header">
24
 
                <div id="form_header_left">
25
 
                </div>
26
 
                <div id="form_header_right">
27
 
                </div>
28
 
        </div>
29
 
        
30
 
        <div id="form_body">
31
 
                <?php $this->DisplayFilter(); ?>
32
 
        </div>
33
 
        <div id="form_footer">
34
 
                <div id="form_footer_left">
35
 
                </div>
36
 
                <div id="form_footer_right">
37
 
                </div>
38
 
        </div>
 
1
<?php
 
2
/*
 
3
 * Xibo - Digitial Signage - http://www.xibo.org.uk
 
4
 * Copyright (C) 2006,2007,2008 Daniel Garner and James Packer
 
5
 *
 
6
 * This file is part of Xibo.
 
7
 *
 
8
 * Xibo is free software: you can redistribute it and/or modify
 
9
 * it under the terms of the GNU Affero General Public License as published by
 
10
 * the Free Software Foundation, either version 3 of the License, or
 
11
 * any later version. 
 
12
 *
 
13
 * Xibo is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
 * GNU Affero General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU Affero General Public License
 
19
 * along with Xibo.  If not, see <http://www.gnu.org/licenses/>.
 
20
 */ 
 
21
?>
 
22
<div id="form_container">
 
23
        <div id="form_header">
 
24
                <div id="form_header_left">
 
25
                </div>
 
26
                <div id="form_header_right">
 
27
                </div>
 
28
        </div>
 
29
        
 
30
        <div id="form_body">
 
31
                <h1>Displays</h1>
 
32
                <p>Below are all the Displays that are registered with the system.</p>
 
33
 
 
34
                <div id="paging">
 
35
                        <form>
 
36
                                <img src="img/forms/first.png" class="first"/>
 
37
                                <img src="img/forms/previous.png" class="prev"/>
 
38
                                <input type="text" class="pagedisplay" readonly size="5"/>
 
39
                                <img src="img/forms/next.png" class="next"/>
 
40
                                <img src="img/forms/last.png" class="last"/>
 
41
                        <select class="pagesize">
 
42
                                <option selected="selected" value="10">10</option>
 
43
                                <option value="20">20</option>
 
44
                                <option value="30">30</option>
 
45
                                <option  value="40">40</option>
 
46
                        </select>
 
47
                        </form>
 
48
                </div>
 
49
                <div id="data_table">
 
50
                        <?php $this->data_table(); ?>
 
51
                </div>
 
52
        </div>
 
53
        <div id="form_footer">
 
54
                <div id="form_footer_left">
 
55
                </div>
 
56
                <div id="form_footer_right">
 
57
                </div>
 
58
        </div>
39
59
</div>  
 
 
b'\\ No newline at end of file'