summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/templates/projectconf.html
blob: e8b0c39f258ac4fe531e0ea5c44255d3416cdd52 (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
{% extends "baseprojectpage.html" %}
{% load projecttags %}
{% load humanize %}

{% block localbreadcrumb %}
<li>Project configuration</li>
{% endblock %}

{% block projectinfomain %}
    <div class="page-header">
        <h1>Configuration Variables</h1>
    </div>

    <div style="padding-left:19px;">

        <dl class="dl-vertical">
        {% for c in configvars %}
            <dt>
                {{c.name}}
                <i class="icon-question-sign get-help" title="{{c.desc}}"></i>
            </dt>
            <dd class="lead">
                <span id="distro">{{c.value}}</span>
                <i class="icon-pencil" id="change-distro-icon"></i>
                <form id="change-distro-form" style="display:none;">
                    <div class="input-append">
                        <input type="text" id="new-distro" value="poky tiny">
                        <button id="apply-change-distro" class="btn" type="button">Save</button>
                        <button id="cancel-change-distro" type="button" class="btn btn-link">Cancel</button>
                    </div>
                </form>
            </dd>
        {% endfor %}


        </dl>
        <form id="variable-form">
            <fieldset style="padding-left:0px;">
                <legend>Add variable</legend>
                <label>
                    Variable
                    <i class="icon-question-sign get-help" title="Variable names are case sensitive, cannot have spaces, and can only include letters, numbers, underscores and dashes"></i>
                </label>
                <input id="variable" type="text" placeholder="Type variable name">
                <label>Value</label>
                <input id="value" type="text" placeholder="Type variable value">
                <div style="display:block;margin-top:10px;">
                    <a href="#" class="btn save" disabled>
                        Add variable
                    </a>
                </div>
            </fieldset>
        </form>
        <!--button id="add-variable" class="btn air">
            <i class="icon-plus"></i>
            Add variable
        </button-->

    </div>


{% endblock %}