Skip to content
Snippets Groups Projects
Commit c1a98eb4 authored by Laila Majeed's avatar Laila Majeed
Browse files

Delete edit_article.html

parent 6045a6dc
Branches
No related merge requests found
{% extends 'layout.html' %}
{% block body %}
<h1>Edit Article</h1>
{% from "includes/_formhelpers.html" import render_field %}
<form method="POST" action="">
<div class="form-group">
{{ render_field(form.title, class_="form-control") }}
</div>
<div class="form-group">
{{ render_field(form.body, class_="form-control", id="editor") }}
</div>
<p><input class="btn btn-primary" type="submit" value="Submit">
</form>
{% endblock %}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment