layerindex-web/layerindex/submitlayer.html
Paul Eggleton c40bfedd4a Implement editing of layers
Allow users with publish permission to edit any layer, and users with
the same email address as one of the maintainers of a layer to edit that
layer.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2013-02-27 10:34:02 +00:00

30 lines
651 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' />
{% endblock %}