Skip to content

Instantly share code, notes, and snippets.

@Nagasaki45
Created March 23, 2014 12:50
Show Gist options
  • Save Nagasaki45/9722649 to your computer and use it in GitHub Desktop.
Save Nagasaki45/9722649 to your computer and use it in GitHub Desktop.
{% extends 'base.html' %}
{% block content %}
<h1 class="text-center">Add new comment for: {{ news_item.title }}</h1>
<form method="POST">
{% csrf_token %}
<input type="text" class="form-control" placeholder="Write your comment here" name="content">
<input type="submit" class="form-control">
</form>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment