Initial setup of mycontroller
This commit is contained in:
@@ -0,0 +1,71 @@
|
||||
<!--
|
||||
|
||||
Copyright (C) 2015-2016 Jeeva Kandasamy (jkandasa@gmail.com)
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
|
||||
-->
|
||||
<div class="container-fluid"> <!-- Container-fluid -->
|
||||
|
||||
<!-- Loading icon disaplay -->
|
||||
<div ng-if="!additionalHeaders.$resolved">
|
||||
<div ng-include src="'partials/common-html/loading.html'"></div>
|
||||
</div>
|
||||
|
||||
<div ng-if="additionalHeaders.$resolved"> <!-- Main Message -->
|
||||
|
||||
<!-- Page Header -->
|
||||
<div ng-include src="'partials/common-html/header-add-update.html'"></div>
|
||||
|
||||
<div><!-- div-main -->
|
||||
<form class="form-horizontal" name="mcForm">
|
||||
<div class="col-md-7">
|
||||
<!-- CSS Files -->
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">{{ 'CSS_FILES' | translate }}</label>
|
||||
<div class="col-sm-10">
|
||||
<textarea class="form-control" rows="4" style="resize:none" ng-model="additionalHeaders.links" ng-list=" " ng-trim="false"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Java script Files -->
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">{{ 'SCRIPT_FILES' | translate }}</label>
|
||||
<div class="col-sm-10">
|
||||
<textarea class="form-control" rows="4" style="resize:none" ng-model="additionalHeaders.scripts" ng-list=" " ng-trim="false"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Additional AngularJS modules to load -->
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">{{ 'ADDITIONAL_ANGULARJS_MODULES_TO_LOAD' | translate }}</label>
|
||||
<div class="col-sm-10">
|
||||
<textarea class="form-control" rows="4" style="resize:none" ng-model="additionalHeaders.additionalAngularjsModulesToLoad" ng-list=" " ng-trim="false"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Angular custom controllers -->
|
||||
<div class="form-group">
|
||||
<label class="col-sm-2 control-label">{{ 'ANGULARJS_CUSTOM_CONTROLLERS' | translate }}</label>
|
||||
<div class="col-sm-10">
|
||||
<textarea class="form-control" rows="21" style="resize:none" ng-model="additionalHeaders.angularjsCustomControllers"></textarea>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Include save form buttons -->
|
||||
<div ng-include src="'partials/common-html/save-form.html'"></div>
|
||||
|
||||
</div>
|
||||
</form>
|
||||
</div><!-- div-main -->
|
||||
|
||||
</div> <!-- Main Message -->
|
||||
</div> <!-- container -->
|
||||
Reference in New Issue
Block a user