Repository: cloudstack Updated Branches: refs/heads/master 3b704ac6f -> f4326aec8
CLOUDSTACK-7661: VM wizard: Add keyboard language dropdown Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/f4326aec Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/f4326aec Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/f4326aec Branch: refs/heads/master Commit: f4326aec82dd34da3660c1b089e23e0c50dd21b8 Parents: 3b704ac Author: Brian Federle <[email protected]> Authored: Tue Oct 7 13:28:29 2014 -0700 Committer: Brian Federle <[email protected]> Committed: Tue Oct 7 13:28:29 2014 -0700 ---------------------------------------------------------------------- ui/index.jsp | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/f4326aec/ui/index.jsp ---------------------------------------------------------------------- diff --git a/ui/index.jsp b/ui/index.jsp index e0b4b78..42973f7 100644 --- a/ui/index.jsp +++ b/ui/index.jsp @@ -401,7 +401,7 @@ <div class="content"> <div class="select-container"> <!-- Name --> - <div class="select vm-instance-name"> + <div class="select odd vm-instance-name"> <div class="name"> <span><fmt:message key="label.name"/> (<fmt:message key="label.optional"/>)</span> </div> @@ -410,7 +410,7 @@ </div> </div> <!-- Add to group --> - <div class="select odd"> + <div class="select"> <div class="name"> <span><fmt:message key="label.add.to.group"/> (<fmt:message key="label.optional"/>)</span> </div> @@ -418,6 +418,22 @@ <input type="text" name="groupname" class="disallowSpecialCharacters" /> </div> </div> + + <!-- Keyboard Language --> + <div class="select odd"> + <div class="name"> + <span>Keyboard language</span> + </div> + <div class="value"> + <select name="keyboardLanguage"> + <option value=""></option> + <option value="us">Standard (US) keyboard</option> + <option value="uk">UK keyboard</option> + <option value="jp">Japanese keyboard</option> + </select> + </div> + </div> + <!-- Zone --> <div class="select"> <div class="name">
