summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/base.html
blob: 11ac2a035535468e64b7d7780db6ff9fee70d5cc (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<!DOCTYPE html>
{% load static %}
{% load projecttags %}
{% load project_url_tag %}
<html lang="en">
    <head>
        <title>
          {% block title %} Toaster {% endblock %}
        </title>
<link rel="stylesheet" href="{% static 'css/bootstrap.min.css' %}" type="text/css"/>
<link rel="stylesheet" href="{% static 'css/bootstrap-responsive.min.css' %}" type='text/css'/>
<link rel="stylesheet" href="{% static 'css/font-awesome.min.css' %}" type='text/css'/>
<link rel="stylesheet" href="{% static 'css/prettify.css' %}" type='text/css'/>
<link rel="stylesheet" href="{% static 'css/default.css' %}" type='text/css'/>

    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
    <script src="{% static 'js/jquery-2.0.3.min.js' %}">
    </script>
    <script src="{% static 'js/jquery.cookie.js' %}">
    </script>
    <script src="{% static 'js/bootstrap.min.js' %}">
    </script>
    <script src="{% static 'js/prettify.js' %}">
    </script>
    <script src="{% static 'js/libtoaster.js' %}">
    </script>
    {% if DEBUG %}
    <script>
      libtoaster.debug = true;
    </script>
    {% endif %}
    <script>
      libtoaster.ctx = {
        jsUrl : "{% static 'js/' %}",
        htmlUrl : "{% static 'html/' %}",
        projectsUrl : "{% url 'all-projects' %}",
        projectsTypeAheadUrl: {% url 'xhr_projectstypeahead' as prjurl%}{{prjurl|json}},
        {% if project.id %}
        projectId : {{project.id}},
        projectPageUrl : {% url 'project' project.id as purl %}{{purl|json}},
        projectName : {{project.name|json}},
        projectIsDefault: {% if project.is_default %}true{% else %}false{% endif %},
        recipesTypeAheadUrl: {% url 'xhr_recipestypeahead' project.id as paturl%}{{paturl|json}},
        layersTypeAheadUrl: {% url 'xhr_layerstypeahead' project.id as paturl%}{{paturl|json}},
        machinesTypeAheadUrl: {% url 'xhr_machinestypeahead' project.id as paturl%}{{paturl|json}},

        projectBuildsUrl: {% url 'projectbuilds' project.id as pburl %}{{pburl|json}},
        projectId : {{project.id}},
        {% else %}
        projectId : undefined,
        projectPageUrl : undefined,
        projectName : undefined,
        projectIsDefault: false,
        {% endif %}
      };
    </script>
    <script src="{% static 'js/base.js' %}"></script>
    <script>
      $(document).ready(function () {
        /* Vars needed for base.js */
        var ctx = {};
        ctx.numProjects = {{projects|length}};
        ctx.currentUrl = "{{request.path|escapejs}}";

        basePageInit(ctx);
      });
    </script>

{% block extraheadcontent %}
{% endblock %}
    </head>

<body style="height: 100%">

  {% csrf_token %}
  <div id="loading-notification" class="alert lead text-center" style="display:none">
    Loading <i class="fa-pulse icon-spinner"></i>
  </div>

  <div id="change-notification" class="alert lead alert-info" style="display:none">
    <button type="button" class="close" id="hide-alert">&times;</button>
    <span id="change-notification-msg"></span>
  </div>

    <div class="navbar navbar-fixed-top">
      <div class="navbar-inner">
        <div class="container-fluid">
          <a class="brand logo" href="#"><img src="{% static 'img/logo.png' %}" class="" alt="Yocto logo project"/></a>
          <span class="brand">
            <a href="/">Toaster</a>
            {% if DEBUG %}
            <i class="icon-info-sign" title="<strong>Toaster version information</strong>" data-content="<dl><dt>Branch</dt><dd>{{TOASTER_BRANCH}}</dd><dt>Revision</dt><dd>{{TOASTER_REVISION}}</dd></dl>"></i>
            {% endif %}
          </span>
          {% if BUILD_MODE and request.resolver_match.url_name != 'landing' and request.resolver_match.url_name != 'newproject' %}
          <ul class="nav">
            <li {% if request.resolver_match.url_name == 'all-builds' %}
                class="active"
                {% endif %}>
              <a href="{% url 'all-builds' %}">
                <i class="icon-tasks"></i>
                All builds
              </a>
            </li>
            <li {% if request.resolver_match.url_name == 'all-projects'  %}
                class="active"
                {% endif %}>
              <a href="{% url 'all-projects' %}">
                <i class="icon-folder-open"></i>
                All projects
              </a>
            </li>
          </ul>
          {% endif %}
          <ul class="nav pull-right">
            <li>
              <a target="_blank" href="http://www.yoctoproject.org/docs/latest/toaster-manual/toaster-manual.html">
                <i class="icon-book"></i>
                Manual
              </a>
            </li>
          </ul>
          <span class="pull-right divider-vertical"></span>

          <!-- new project button; only show in build mode -->
          {% if BUILD_MODE %}
            <div class="btn-group pull-right">
              <a class="btn" id="new-project-button" href="{% url 'newproject' %}">New project</a>
            </div>
          {% endif %}

          <!--
          New build popover; only shown if there is at least one user-created project
          and we're in build mode
          -->
          {% if BUILD_MODE and non_cli_projects.count > 0 %}
            <div class="btn-group pull-right" id="new-build-button" style="display:none">
              <button class="btn dropdown-toggle" data-toggle="dropdown">
                New build
                <i class="icon-caret-down"></i>
              </button>
              <ul class="dropdown-menu new-build multi-select">
                <li>
                  <h3>New build</h3>
                  <h6>
                    Project:
                    <span id="project">
                      {% if project.id and not project.is_default %}
                        <a class="lead" href="{% project_url project %}">{{project.name}}</a>
                      {% else %}
                        <a class="lead" href="#"></a>
                      {% endif %}
                      <i class="icon-pencil"></i>
                    </span>
                  </h6>
                  <form id="change-project-form" style="display:none;">
                    <div class="input-append">
                      <input type="text" class="input-medium" id="project-name-input" placeholder="Type a project name" autocomplete="off" data-minLength="1" data-autocomplete="off" data-provide="typeahead"/>
                      <button id="save-project-button" class="btn" type="button">Save</button>
                      <a href="#" id="cancel-change-project" class="btn btn-link" style="display: none">Cancel</a>
                    </div>
                    <p><a id="view-all-projects" href="{% url 'all-projects' %}">View all projects</a></p>
                  </form>
                </li>
                <li>
                  <div class="alert" style="display:none;">
                    <p>This project configuration is incomplete, so you cannot run builds.</p>
                    <p><a href="{% if project.id %}{% url 'project' project.id %}{% endif %}">View project configuration</a></p>
                  </div>
                </li>
                <li id="targets-form">
                  <h6>Recipe(s):</h6>
                  <form>
                    <input type="text" class="input-xlarge build-target-input" placeholder="Type a recipe name" autocomplete="off" data-minLength="1" data-autocomplete="off" data-provide="typeahead" disabled/>
                    <div class="row-fluid">
                      <button class="btn btn-primary build-button" disabled>Build</button>
                    </div>
                  </form>
                </li>
              </ul>
            </div>
          {% endif %}
    </div>
 </div>
</div>

<div class="container-fluid top-padded">
<div class="row-fluid">
{% block pagecontent %}
{% endblock %}
</div>
</div>
</body>
</html>