mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 12:49:01 +02:00

* Don't specify action on form - this is best practice and avoids the need to have separate form tags for submit and edit * Add a short introduction to the submit form * Focus first field on load only if first field is empty (avoids doing this focusing on the edit form which is not really useful). Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
33 lines
728 B
HTML
33 lines
728 B
HTML
{% extends "layerindex/editlayer.html" %}
|
|
|
|
{% comment %}
|
|
|
|
layerindex-web - layer submission form page template
|
|
|
|
Copyright (C) 2013 Intel Corporation
|
|
Licensed under the MIT license, see COPYING.MIT for details
|
|
|
|
{% endcomment %}
|
|
|
|
|
|
<!--
|
|
{% block title %}OpenEmbedded metadata index - submit layer{% endblock %}
|
|
-->
|
|
|
|
{% block heading %}
|
|
<div class="page-header">
|
|
<h1>Submit layer</h1>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|
|
{% block formtop %}
|
|
<div class="submitformintro">
|
|
<p>Please enter the details for the layer you wish to add to the index.</p>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block submitbuttons %}
|
|
<input type="submit" value="Submit layer" class="btn btn-primary btn-large" />
|
|
{% endblock %}
|