-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #3296
- Loading branch information
Showing
7 changed files
with
115 additions
and
3 deletions.
There are no files selected for viewing
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
23 changes: 23 additions & 0 deletions
23
hypha/apply/funds/templates/funds/applicationsubmission_confirm_withdraw.html
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,23 @@ | ||
{% extends "base-apply.html" %} | ||
{% load i18n static %} | ||
|
||
{% block title %}{% trans "Withdrawing" %}: {{object.title }}{% endblock %} | ||
|
||
{% block content %} | ||
<div class="admin-bar"> | ||
<div class="admin-bar__inner"> | ||
<h2 class="heading heading--no-margin">{% trans "Withdrawing" %}: {{ object.title }}</h2> | ||
</div> | ||
</div> | ||
|
||
<div class="wrapper wrapper--light-grey-bg wrapper--form wrapper--sidebar"> | ||
<div class="wrapper--sidebar--inner"> | ||
<form class="form" action="" method="post"> | ||
{% csrf_token %} | ||
<p><strong>{% blocktrans %}Are you sure you want to withdraw "{{ object }}" from consideration?{% endblocktrans %}</strong></p> | ||
<button class="button button--warning button--submit button--top-space" type="submit">{% trans "Confirm" %}</button> | ||
</form> | ||
</div> | ||
</div> | ||
|
||
{% 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
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 |
---|---|---|
@@ -1 +1,6 @@ | ||
// stylelint-disable no-empty-source | ||
.link--withdraw-submission { | ||
margin-right: 1rem; | ||
padding-right: 1rem; | ||
border-right: 2px solid #cfcfcf; | ||
font-weight: 700; | ||
} |