~xibo-maintainers/xibo/tempel

« back to all changes in this revision

Viewing changes to views/display-page.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:
92
92
 
93
93
                                    {% set title %}{% trans "Client Type" %}{% endset %}
94
94
                                    {% set android %}{% trans "Android" %}{% endset %}
 
95
                                    {% set linux %}{% trans "Linux" %}{% endset %}
 
96
                                    {% set sssp %}{% trans "Tizen" %}{% endset %}
 
97
                                    {% set webos %}{% trans "webOS" %}{% endset %}
95
98
                                    {% set windows %}{% trans "Windows" %}{% endset %}
96
 
                                    {% set webos %}{% trans "webOS" %}{% endset %}
97
 
                                    {% set sssp %}{% trans "Tizen" %}{% endset %}
98
99
                                    {% set options = [
99
100
                                        { optionid: "", option: "" },
100
101
                                        { optionid: "android", option: android},
101
 
                                        { optionid: "windows", option: windows},
 
102
                                        { optionid: "linux", option: linux},
 
103
                                        { optionid: "sssp", option: sssp},
102
104
                                        { optionid: "lg", option: webos},
103
 
                                        { optionid: "sssp", option: sssp}
 
105
                                        { optionid: "windows", option: windows}
104
106
                                    ] %}
105
107
                                    {{ inline.dropdown("clientType", "single", title, "", options, "optionid", "option") }}
106
108