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

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>
30 lines
651 B
HTML
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 %}
|