-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fc44bea
commit f7ad4fb
Showing
31 changed files
with
141 additions
and
30 deletions.
There are no files selected for viewing
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
12 changes: 0 additions & 12 deletions
12
devsearch/projects/templates/projects/delete_template.html
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{% extends 'main.html' %} | ||
{% block content %} | ||
<!-- using a form to accept a post request --> | ||
<!-- <form action="" method="POST"> | ||
{% csrf_token %} | ||
<p>Are you sure you want to delete "{{object}}"</p> | ||
<button><a href="{% url 'projects' %}"> Cancel</a></button> | ||
<input type="submit" value="confirm"> | ||
</form> --> | ||
|
||
<main class="formPage my-xl"> | ||
<div class="content-box"> | ||
<div class="formWrapper"> | ||
|
||
<br> | ||
|
||
<form class="form" method="POST" action=""> | ||
{% csrf_token %} | ||
<p>Are you sure you want to delete "{{object}}"</p> | ||
<a class="btn btn--sub btn--lg my-md" href="{{request.GET.next}}">Go Back</a> | ||
|
||
<input class="btn btn--sub btn--lg my-md" type="submit" value="Confirm" /> | ||
</form> | ||
</div> | ||
</div> | ||
</main> | ||
|
||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{% extends 'main.html' %} | ||
|
||
{% block content %} | ||
|
||
|
||
<main class="formPage my-xl"> | ||
<div class="content-box"> | ||
<div class="formWrapper"> | ||
<a class="backButton" href="{% url 'account' %}"><i class="im im-angle-left"></i></a> | ||
<br> | ||
|
||
<form class="form" method="POST" action=""> | ||
{% csrf_token %} | ||
{% for field in form %} | ||
<div class="form__field"> | ||
<label for="formInput#text">{{field.label}}: </label> | ||
{{field}} | ||
</div> | ||
{% endfor %} | ||
<input class="btn btn--sub btn--lg my-md" type="submit" value="Submit" /> | ||
</form> | ||
</div> | ||
</div> | ||
</main> | ||
|
||
{% endblock%} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters