Skip to content
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

Fixes: https://github.com/gitcoinco/web/issues/5291 #5351

Merged
merged 1 commit into from
Oct 22, 2019
Merged
Changes from all commits
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
14 changes: 8 additions & 6 deletions app/dashboard/templates/profiles/tab_active.html
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,22 @@

<div class="tab-projects d-flex flex-column">
{% for bounty in active_bounties %}
<div class="tab-projects__item d-flex mb-0 {% cycle 'odd' 'even' %} pt-1 pb-1">
<img class="rounded mr-3" src="{% avatar_url bounty.org_name %}" alt="">
<div class="tab-projects__item-details" style="width: 70%">
<div class="tab-projects__item d-flex mb-0 {% cycle 'odd' 'even' %} pt-1 pb-1 bounty_row">
<div class="avatar-container col-1 justify-content-center hide_min_viewport">
<img class="profile-header__avatar mr-3" src="{% avatar_url bounty.org_name %}" alt="">
</div>
<div class="tab-projects__item-details col-12 col-md-8 d-flex flex-column bounty-detail">
<div class="d-flex">
<h5 class="font-weight-semibold">{{bounty.title}}</h5>&nbsp;
<div class="title font-subheader">{{bounty.title}}</div>&nbsp;
</div>
<small class="align-self-center">Bounty opened {{bounty.web3_created|naturaltime}} for {{bounty.org_name}}</small>
<div class="info font-caption">Bounty opened {{bounty.web3_created|naturaltime}} for {{bounty.org_name}}</div>
<div class="tag-list">
{% for keyword in bounty.keywords_list %}
<small class="tag-list__item">{{keyword}}</small>
{% endfor %}
</div>
</div>
<div class="float-right">
<div class="col-12 col-md-4 col-lg-3 font-caption my-auto text-right">
<a class="btn btn-gc-blue btn-sm " href="{{bounty.url}}">View Bounty &gt;</a>
</div>
</div>
Expand Down