Branch merge

This commit is contained in:
2015-02-01 23:10:54 +01:00
6 changed files with 13 additions and 13 deletions

View File

@@ -2,10 +2,10 @@
{% block body %}
<div class="col-md-9">
<h2>Create Node type</h2>
<h2>Add Node type</h2>
<div class="row">
<div class="col-md-6">
<form method="POST" action="{{url_for('nodes.create')}}">
<form method="POST" action="{{url_for('nodes.add')}}">
{{ form.hidden_tag() }}
<div class="form-group">
{{ form.name.label }}
@@ -23,7 +23,7 @@
{{ form.is_extended.label }}
{{ form.is_extended(class='form-control') }}
</div>
<input class="btn btn-default" type="submit" value="Create Node Type">
<input class="btn btn-default" type="submit" value="Add Node Type">
</form>
</div>
</div>

View File

@@ -44,7 +44,7 @@
</div>
<div class="row">
<div class="col-md-12">
<a href="{{url_for('nodes.create')}}" class="btn btn-default">Create</a>
<a href="{{url_for('nodes.add')}}" class="btn btn-default">Add</a>
</div>
</div>
</div>