Skip to content

Commit

Permalink
chore: delete and update templates
Browse files Browse the repository at this point in the history
  • Loading branch information
sbanoeon committed Sep 9, 2022
1 parent e194cf7 commit 4780fc6
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions app/Entirety/entities/templates/entities/delete.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{% extends '_base.html' %}

{% block title %}Delete Entity{% endblock %}

{% block content %}
<form method="post" action="">
<div>
{% include 'accordion.html' %}
<button class="btn btn-danger rounded-pill" type="submit">Delete</button>
</div>
</form>
{% endblock %}
12 changes: 12 additions & 0 deletions app/Entirety/entities/templates/entities/update.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{% extends '_base.html' %}

{% block title %}Update Entity{% endblock %}

{% block content %}
<form method="post" action="">
<div>
{% include 'accordion.html' %}
<button class="btn btn-warning rounded-pill" type="submit">Update</button>
</div>
</form>
{% endblock %}

0 comments on commit 4780fc6

Please sign in to comment.