-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Show a confidentiality warning before showing any CfP admin pages
- Loading branch information
Showing
4 changed files
with
67 additions
and
2 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
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,29 @@ | ||
{% extends "cfp_review/base.html" %} | ||
{% block title%}CfP Admin{% endblock %} | ||
{% block body %} | ||
<h2>CfP Confidentiality</h2> | ||
|
||
<p> | ||
You're about to view proposals in the EMF Call for Participation. | ||
</p> | ||
|
||
<p> | ||
Please be aware that all proposals are confidential until the schedule is released. | ||
Proposals which are not accepted will remain confidential indefinitely. | ||
</p> | ||
|
||
<p> | ||
Don't share any information from the CfP with anyone else, including other members | ||
of the EMF team who aren't involved in the CfP process. | ||
</p> | ||
|
||
<p> | ||
If you have any questions, please ask the content team. | ||
</p> | ||
|
||
<form method="post"> | ||
<button name="agree" value="1" class="btn btn-primary" type="submit">I agree to keep proposals confidential</button> | ||
<input type="hidden" name="next" value="{{ next }}"> | ||
</form> | ||
|
||
{% endblock %} |