-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improvements to Crowbar-UI for Rackscale
- Added text boxes to edit PSME server IP and port.
- Loading branch information
1 parent
f3e290a
commit c27d8f9
Showing
7 changed files
with
47 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
.row | ||
.col-xs-12 | ||
%h1.page-header | ||
= t(".title") | ||
|
||
.btn-group.pull-right | ||
= link_to t(".show"), rsd_display_path, :class => "btn btn-default" | ||
|
||
= form_tag rsd_display_path, :role => "form" do |f| | ||
.panel.panel-default | ||
.panel-body | ||
.form-group | ||
%label{ :for => :rsd_rest_server } | ||
= t(".rsd_rest_server") | ||
= text_field_tag :rsd_rest_server, @rsd_rest_server, :class => "form-control", :disabled => nil | ||
|
||
.form-group | ||
%label{ :for => :rsd_server_port } | ||
= t(".rsd_server_port") | ||
= text_field_tag :rsd_server_port, @rsd_server_port, :class => "form-control", :disabled => nil | ||
|
||
.panel-footer.text-right | ||
.btn-group | ||
%input.btn.btn-default{ :type => "submit", :name => "show", :value => t(".show") } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,4 +34,4 @@ nav: | |
utils: | ||
rsd: | ||
order: 91 | ||
route: 'rsd_edit_path' | ||
route: 'rsd_settings_path' |