rectified minor formatting mistakes

parent a2a9424c
{% extends 'base.html' %}
{% block title %}Add Announcement{% endblock %}
{% block content %}
<h1>Add a new announcement:</h1>
<form method="POST" enctype="multipart/form-data"> <form method="POST" enctype="multipart/form-data">
<!-- Security token --> <!-- Security token -->
...@@ -6,5 +10,6 @@ ...@@ -6,5 +10,6 @@
<!-- Using the formset --> <!-- Using the formset -->
{{ form.as_p }} {{ form.as_p }}
<input type="submit" value="Save New Announcement"> <input type="submit" value="Add Announcement">
</form> </form>
{% endblock %}
\ No newline at end of file
{% extends 'base.html' %} {% extends 'base.html' %}
{% block title %}Edit Announcement{% endblock %} {% block title %}Edit Announcement{% endblock %}
{% block content %} {% block content %}
<h1>Edit announcement:</h1>
<form method="post" enctype="multipart/form-data"> <form method="post" enctype="multipart/form-data">
<!-- Security token --> <!-- Security token -->
......
Markdown is supported
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