Skip to content

Commit

Permalink
addressing issues identified in #47 and #51
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnmjones committed Sep 19, 2021
1 parent 7aa978e commit aa8bdaa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions hypercane-gui/scripts/filter include-only.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
vars(args)['errorfilename'] = "hypercane-errors.dat"
vars(args)['cache_storage'] = os.environ.get('HC_CACHE_STORAGE')
vars(args)['input_arguments'] = args.input_file.name
vars(args)['allow_noncompliant_archives'] = False

logger = get_logger(
__name__,
Expand Down
6 changes: 6 additions & 0 deletions hypercane-gui/templates/jobs/job_view.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ <h1 class="text-center">{{ job_error }}</h1>
<li><a href="{{ file.url }}" download><span class="glyphicon glyphicon-file"></span> Identify Output</a></li>
{% endif %}

{% elif 'filter' in job_info.job.script_version.script.script_name %}

{% if 'hypercane-filter-output' in file.url %}
<li><a href="{{ file.url }}" download><span class="glyphicon glyphicon-file"></span> Filter Output</a></li>
{% endif %}

{% elif 'cluster' in job_info.job.script_version.script.script_name %}

{% if 'hypercane-cluster-output' in file.url %}
Expand Down

0 comments on commit aa8bdaa

Please sign in to comment.