mirror of
https://git.yoctoproject.org/poky
synced 2026-03-15 03:39:42 +01:00
This patch rewrites the Project page and the additional infrastructure in order to fix a bug that makes triggering builds through UI impossible, and to introduce data feeds for suggestions for the user. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
38 lines
1.3 KiB
HTML
38 lines
1.3 KiB
HTML
{% extends "base.html" %}
|
|
{% load projecttags %}
|
|
{% load humanize %}
|
|
{% block pagecontent %}
|
|
<div class="row-fluid">
|
|
<div class="span6">
|
|
<div class="page-header">
|
|
<h1>Create a new project</h1>
|
|
</div>
|
|
<div class="container-fluid">
|
|
{% if alert %}
|
|
<div class="alert alert-error row-fluid" role="alert">{{alert}}</div>
|
|
{% endif %}
|
|
</div>
|
|
<form method="POST">{% csrf_token %}
|
|
<fieldset>
|
|
<label>Project name <span class="muted">(required)</span></label>
|
|
<input type="text" class="input-xlarge" required name="projectname" value="{{projectname}}">
|
|
<label class="project-form">
|
|
Yocto Project version
|
|
<i class="icon-question-sign get-help" title="This sets the branch for the Yocto Project core layers (meta, meta-yocto and meta-yocto-bsp), and for the layers you use from the OpenEmbedded Metadata Index"></i>
|
|
</label>
|
|
<select name="projectversion" id="projectversion">
|
|
{% for release in releases %}
|
|
<option value="{{release.id}}"{%if projectversion == release.id %} selected{%endif%}>{{release.name}} ({{release.description}})</option>
|
|
{% endfor %}
|
|
</select>
|
|
</fieldset>
|
|
|
|
<div class="form-actions">
|
|
<input type="submit" class="btn btn-primary btn-large" value="Create project"/>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|