~xibo-maintainers/xibo/tempel

« back to all changes in this revision

Viewing changes to views/displayprofile-form-add.twig

  • Committer: GitHub
  • Author(s): Dan Garner
  • Date: 2019-01-29 13:37:37 UTC
  • mfrom: (676.1.15)
  • Revision ID: git-v1:ff99928943294e7eac5a7ae1d3dbd43a6b13802b
Merge pull request #467 from dasgarner/bugfix/1.8.12-pack5

Bugfix/1.8.12 pack5

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{#
2
 
/*
3
 
 * Spring Signage Ltd - http://www.springsignage.com
4
 
 * Copyright (C) 2015 Spring Signage Ltd
5
 
 * (${FILE_NAME})
 
2
/**
 
3
 * Copyright (C) 2019 Xibo Signage Ltd
 
4
 *
 
5
 * Xibo - Digital Signage - http://www.xibo.org.uk
 
6
 *
 
7
 * This file is part of Xibo.
 
8
 *
 
9
 * Xibo is free software: you can redistribute it and/or modify
 
10
 * it under the terms of the GNU Affero General Public License as published by
 
11
 * the Free Software Foundation, either version 3 of the License, or
 
12
 * any later version.
 
13
 *
 
14
 * Xibo is distributed in the hope that it will be useful,
 
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
 * GNU Affero General Public License for more details.
 
18
 *
 
19
 * You should have received a copy of the GNU Affero General Public License
 
20
 * along with Xibo.  If not, see <http://www.gnu.org/licenses/>.
6
21
 */
7
 
 
8
 
In theory it is fine, although  it may be better to user clientTypes from controller??
9
 
 
10
22
#}
11
23
 
12
24
{% extends "form-base.twig" %}
35
47
                {% set helpText %}{% trans "What type of display client is this profile intended for?" %}{% endset %}
36
48
                {% set windows %}{% trans "Windows" %}{% endset %}
37
49
                {% set android %}{% trans "Android" %}{% endset %}
38
 
                {% set lg %}{% trans "LG" %}{% endset %}
 
50
                {% set linux %}{% trans "Linux" %}{% endset %}
39
51
                {% set sssp %}{% trans "Tizen" %}{% endset %}
 
52
                {% set lg %}{% trans "webOS" %}{% endset %}
40
53
                {% set options = [
41
54
                    { typeid: "android", type: android },
 
55
                    { typeid: "linux", type: linux },
 
56
                    { typeid: "sssp", type: sssp },
42
57
                    { typeid: "lg", type: lg },
43
 
                    { typeid: "windows", type: windows },
44
 
                    { typeid: "sssp", type: sssp }
 
58
                    { typeid: "windows", type: windows }
45
59
                ] %}
46
60
                {{ forms.dropdown("type", "single", title,"", options, "typeid","type", helpText) }} 
47
61