Project

General

Profile

1
<div class="uk-grid uk-grid-stack">
2
  <div class="uk-width-expand@m uk-first-column">
3
    <div class="gwt-HTML uk-margin-medium-bottom">
4
      <h1 class="uk-article-title">Help Texts Admin</h1>
5
    </div>
6
    <div>
7
      <div>
8
        <div>
9
          <div class="form-group">
10
            <label class="control-label">Select help item</label>
11
            <select class="form-control">
12
              <option value="none">None selected</option>
13
            </select>
14
          </div>
15
          <div class="form-group">
16
            <label class="control-label">Edit help text</label>
17
            <ckeditor [(ngModel)]="helpTextContent"
18
                      [readonly]="false" ></ckeditor>
19
          </div>
20
        </div>
21
      </div>
22
      <div class="helpAdminActionButtons">
23
        <button class="uk-button uk-button-primary" type="button" (click)="showPreview()">Preview</button>
24
        <button class="uk-button uk-button-default" type="button">Submit Changes</button>
25
      </div>
26
    </div>
27
  </div>
28
  <div class="tm-sidebar uk-width-1-4@m">
29
    <div class="previewPanel" [innerHtml]="previewContent"></div>
30
    <div>
31
      <div class="gwt-HTML">
32
        <div class="uk-card uk-card-body uk-card-default sidemenu">
33
          <h3 class="el-title uk-h3 uk-heading-bullet">Info / Help</h3>
34
          <p class="small">
35
            Use the drop down menu to select the target page where you want the help text to appear. Use the editor on the main window to modify the content (html format is accepted).
36
          </p>
37
          <p class="small">
38
            All help content appears in a pane box at the right hand side of the target page.
39
          </p>
40
          <p class="small">
41
            Click on the
42
            <span style="font-family:courier new,courier,monospace">PREVIEW</span>
43
            button and see how the help content will look like on the target page.
44
          </p>
45
          <p class="small">
46
            When you
47
            <span style="font-family:courier new,courier,monospace">SUBMIT CHANGES</span>
48
            these will automatically appear on the target page (refresh the browser page).
49
          </p>
50
          <p class="small"></p>
51
        </div>
52
      </div>
53
    </div>
54
  </div>
55
</div>
(1-1/7)