diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-09-27 14:12:08 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2020-09-27 14:12:08 +0530 |
commit | d7d22023241d3e475ada517b2059fd231a474970 (patch) | |
tree | af98848790a70e7d2e98dfa4a515f78c678c36d5 | |
parent | 52638600e201c80bd3589f0ccefca72f8f9e6ba1 (diff) |
changed job status to job status / result
-rw-r--r-- | app/templates/base.html | 2 | ||||
-rw-r--r-- | app/templates/home.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/templates/base.html b/app/templates/base.html index 0b34351..e4ae447 100644 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -63,7 +63,7 @@ </div> </li> <li class="{{ 'nav-item active' if active_page == 'job_status' else 'nav-item' }}"> - <a class="nav-link" href="{{ url_for('status') }}">Job Status</a> + <a class="nav-link" href="{{ url_for('status') }}">Job Status / Results</a> </li> </ul> </div> diff --git a/app/templates/home.html b/app/templates/home.html index f8e08da..7e0e352 100644 --- a/app/templates/home.html +++ b/app/templates/home.html @@ -28,7 +28,7 @@ <li>API - <a href="/docs">Swagger UI</a> or <a href="/redoc">ReDoc</a> - API access for the server</li> <li><a href="{{url_for('generate_pdbqts')}}">Generate PDBQTs</a> - Generate PDBQTs for your compounds or proteins</li> <li><a href="{{url_for('editor')}}">Editor</a> - Simple Molecular Editor powered by Kekule.js</li> - <li><a href="{{ url_for('status')}}">Job Status</a> - Check the job status </li> + <li><a href="{{ url_for('status')}}">Job Status / Results</a> - Check the job status and view the results</li> <li><a href="{{ url_for('visualise')}}">Visualise</a> - Molecular Viewer </li> </ul> <section> |