layerindex-web/templates/layerindex/submitlayer.html
Paul Eggleton 445b17d3cf Use appending to extend page title instead of overriding it
This means there is only one place to set the base title instead of
needing to change it in every template.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2013-03-06 17:23:36 +00:00

37 lines
816 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_append %} - submit layer{% endblock %}
-->
{% block heading %}
<div class="page-header">
<h1>Submit layer</h1>
</div>
{% endblock %}
{% block branch_selector %}
<li class="disabled"><a href="#">Branch: <b>master</b></a></li>
{% 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 %}