aboutsummaryrefslogtreecommitdiffstats
path: root/moonv4/moon_gui/static/app/policy/edit/policy-edit-basic.tpl.html
blob: f55c1d05d0b2736a3e1f58c707fcfb35ac44624a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #f92672 } /* Operator */
.highlight .p { color: #f8f8f2 } /* Punctuation */
.highlight .ch { color: #75715e } /* Comment.Hashbang */
.highlight .cm { color: #75715e } /* Comment.Multiline */
.highlight .cp { color: #75715e } /* Comment.Preproc */
.highlight .cpf { color: #75715e } /* Comment.PreprocFile */
.highlight .c1 { color: #75715e } /* Comment.Single */
.highlight .cs { color: #75715e } /* Comment.Special */
.highlight .gd { color: #f92672 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gi { color: #a6e22e } /* Generic.Inserted */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #75715e } /* Generic.Subheading */
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
.highlight .kt { color: #66d9ef } /* Keyword.Type */
.highlight .ld { color: #e6db74 } /* Literal.Date *
<div class="row">

    <form class="form-horizontal" role="form" name="edit.form">

        <div class="form-group">

            <label for="id" class="col-sm-3 control-label" data-translate="moon.policy.edit.basic.form.id">Id</label>

            <div class="col-sm-6">

                <input name="id" id="id" disabled class="form-control" type="text" data-ng-model="edit.policyToEdit.id" required />

            </div>

        </div>

        <div class="form-group" ng-class="{'has-error': edit.form.name.$invalid && edit.form.name.$dirty}">

            <label for="name" class="col-sm-3 control-label" data-translate="moon.policy.edit.basic.form.name">Name</label>

            <div class="col-sm-6">

                <input name="name" id="name" class="form-control" type="text" data-ng-model="edit.policyToEdit.name" required />

                <div class="help-block" ng-show="edit.form.name.$dirty && edit.form.name.$invalid">
                    <small class="error" ng-show="edit.form.name.$error.required" data-translate="moon.policy.edit.basic.check.name.required">Name is required</small>
                </div>

            </div>

        </div>


        <div class="form-group" ng-class="{'has-error': edit.form.model.$dirty && (edit.form.model.$invalid || !edit.selectedModel)}">

            <label class="col-sm-3 control-label" data-translate="moon.policy.edit.basic.form.model">Models</label>

            <div class="col-sm-6">

                <ui-select ng-model="edit.selectedModel" name="model" required>
                    <ui-select-match placeholder="(None)">{{$select.selected.name}}</ui-select-match>
                    <ui-select-choices repeat="model in edit.models">
                        <div ng-value="model">{{model.name}}</div>
                    </ui-select-choices>
                </ui-select>

                <moon-loader ng-if="edit.modelsLoading"></moon-loader>

                <div class="help-block" ng-show="edit.form.model.$dirty && (edit.form.model.$invalid || !edit.selectedModel)">
                    <small class="error" ng-show="edit.form.model.$error.required" data-translate="moon.policy.edit.basic.check.model.required">Model is required</small>
                </div>

            </div>

        </div>

        <div class="form-group">

            <label for="description" class="col-sm-3 control-label" data-translate="moon.policy.edit.basic.form.description">Description</label>
            <div class="col-sm-6">
                <textarea id="description" name="description" class="form-control" data-ng-model="edit.policyToEdit.description"></textarea>
            </div>

        </div>

        <div class="form-group">

            <div class="col-sm-2 col-sm-offset-3">

                <a href=""  ng-disabled="edit.loading" ng-click="edit.init()" class="btn btn-default">
                    <span data-translate="moon.policy.edit.basic.action.init">Init</span>
                </a>
            </div>

            <div class="col-sm-4 col-sm-offset-2">

                <a href="" ng-disabled="edit.loading" ng-click="edit.editPolicy()" class="btn btn-warning">
                    <span class="glyphicon glyphicon-save"></span>
                    <span data-translate="moon.policy.edit.basic.action.update">Update</span>
                </a>

                <moon-loader ng-if="edit.loading"></moon-loader>
            </div>

        </div>

    </form>

</div>