diff options
Diffstat (limited to 'app/templates')
-rw-r--r-- | app/templates/base.html | 8 | ||||
-rw-r--r-- | app/templates/generate.html | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/app/templates/base.html b/app/templates/base.html index 157b68b..5d90d74 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -3,7 +3,7 @@ <head> <meta charset="UTF-8"> <title>Curie Web</title> - <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"> + <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootswatch/4.5.2/solar/bootstrap.min.css"> <link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}"> <link rel="apple-touch-icon" sizes="180x180" href="{{ url_for('static', filename='favicons/apple-touch-icon.png') }}"> <link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='favicons/favicon-32x32.png') }}"> @@ -38,8 +38,14 @@ <a class="nav-link" href="{{ url_for('dock_upload') }}">Dock and Report</a> </li> <li class="nav-item"> + <a class="nav-link" href="{{ url_for('generate') }}">Generate</a> + </li> + <li class="nav-item"> <a class="nav-link" href="{{ url_for('status') }}">Job Status</a> </li> + <li class="nav-item"> + <a class="nav-link" href="{{url_for('pubmed')}}">Search</a> + </li> </ul> </div> </nav> diff --git a/app/templates/generate.html b/app/templates/generate.html index c034bd3..45bbb3b 100644 --- a/app/templates/generate.html +++ b/app/templates/generate.html @@ -2,7 +2,7 @@ {% block main %} <h1>Curie Generate</h1> - <p>The model {{expName}} has been trained for {{epochs}} epochs using the {{optimizer}} optimization algorithm</p> + <p>The model {{expName}} has been trained for {{epochs}} epochs using the {{optimizer}} optimization algorithm. Option for finetuning coming soon.</p> <form action="{{ url_for('generate') }}" method="post" enctype="multipart/form-data"> {% include 'flash_messages.html' %} {{ form.csrf_token }} |