Delete templates/blog/blogCreate.html

pull/6/head
Surya 2024-07-24 22:42:02 +02:00
parent 9a6a88e695
commit 9de438c885
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
{% extends 'base.html' %}
{% block content %}
{% load crispy_forms_tags %}
<div class="container mt-5">
<form method="POST">
{% csrf_token %}
<div class="card mb-4">
<div class="card-header">
Create a New Blog Article
</div>
<div class="card-body">
{{ form | crispy }}
<br>
<button class="btn btn-light" type="submit"> Post </button>
</div>
</div>
</form>
</div>
{% endblock %}