layerindex-web/layerindex/submitlayer.html
Paul Eggleton 0e14cf17d8 Hide extra maintainer forms and show each one on request
Hide all empty maintainer forms and have a button to "add" another
maintainer which just uses jQuery to show the next hidden form. Up to
10 maintainers can be added which should be more than enough.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2013-02-28 14:36:41 +00:00

30 lines
663 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 submitlink %}
<!-- Disable submit link, otherwise clicking it will blank the form! -->
<li><a href="#">Submit layer</a></li>
{% endblock %}
{% block formtag %}
<form action="{% url submit_layer %}" method="post">
{% endblock %}
{% block submitbuttons %}
<input type="submit" value="Submit" class="btn btn-primary" />
{% endblock %}