-
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.
added create variant shortcut and added no_login option
- Loading branch information
Showing
8 changed files
with
109 additions
and
34 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
HOST= | ||
PORT= | ||
NO_PROXY=localhost | ||
LOGIN_REQUIRED=True | ||
|
||
########## DB SETTINGS ######### | ||
DB_HOST= | ||
|
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
25 changes: 25 additions & 0 deletions
25
src/frontend_celery/webapp/templates/variant/unknown_variant.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,25 @@ | ||
{% extends 'base.html' %} | ||
|
||
{% block content %} | ||
<div class="container"> | ||
|
||
|
||
|
||
<h1 class="bst">{% block title %} Unknown variant {% endblock %}</h1> | ||
|
||
|
||
<div class="bst"> | ||
<div>The variant you are trying to access is unknown by HerediVar. Please click to following button to request a new variant:</div> | ||
<div> | ||
<a class="btn btn-primary" href="{{url_for('variant.create', **request.args)}}">create new variant</a> | ||
</div> | ||
</div> | ||
|
||
|
||
</div> | ||
|
||
{% endblock %} | ||
|
||
{% block special_scripts %} | ||
<script src="/static/js/create.js"></script> | ||
{% 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