Skip to content

Improve workflows #3083

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Mar 17, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
improving html
  • Loading branch information
antgonza committed Mar 13, 2021
commit 1426f7d0a010c61444cd7be5cd08738875074f31
6 changes: 3 additions & 3 deletions qiita_pet/templates/workflows.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ <h3>Recommended Workflows</h3>
~~ Click on the spheres to get more information ~~
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What do you think about this:

Screen Shot 2021-03-16 at 4 56 47 PM

Suggested change
~~ Click on the spheres to get more information ~~
<h5>Click on the circles to get more information</h5>

{% for i, w in enumerate(workflows) %}
<div class="row">
<div class="col-sm-8" style="background-color: #DCDCDC; height: 450px" id="workflow_{{i}}"></div>
<div class="col-sm-4">
<h4>{{w['name']}} ({{w['id']}}) - Applies to: {{', '.join(w['data_types'])}}</h4>
<div class="col-sm-7" style="background-color: #DCDCDC; height: 650px" id="workflow_{{i}}"></div>
<div class="col-sm-5">
<h4>{{w['name']}} </h4><hr/><h5>Applies to: {{', '.join(w['data_types'])}}</h5>
<div id="workflow_text_{{i}}">
{% raw w['description'] %}
</div>
Expand Down