CLOUDSTACK-1828:NAT on private gateway UI support
Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/0ed0e9a2 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/0ed0e9a2 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/0ed0e9a2 Branch: refs/heads/ui-vpc-redesign Commit: 0ed0e9a26efc616ea5d873be7536e48689e83b20 Parents: 7ca4883 Author: Pranav Saxena <[email protected]> Authored: Sun May 12 23:59:39 2013 +0530 Committer: Pranav Saxena <[email protected]> Committed: Sun May 12 23:59:39 2013 +0530 ---------------------------------------------------------------------- ui/scripts/vpc.js | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/0ed0e9a2/ui/scripts/vpc.js ---------------------------------------------------------------------- diff --git a/ui/scripts/vpc.js b/ui/scripts/vpc.js index 17cf42a..7f56f9b 100644 --- a/ui/scripts/vpc.js +++ b/ui/scripts/vpc.js @@ -950,7 +950,14 @@ id: { label: 'label.id' }, zonename: { label: 'label.zone' }, domain: { label: 'label.domain' }, - account: { label: 'label.account' } + account: { label: 'label.account' }, + sourcenatsupported:{ + label: 'SourceNAT Supported' , + converter: function(str) { + return str ? 'Yes' : 'No'; + } + } + } ], dataProvider: function(args) {
