-
-
Notifications
You must be signed in to change notification settings - Fork 775
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
101 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{% for bounty in bounties %} | ||
<a class="row result bounty_row {{ bounty.network }}" target="_blank" | ||
{% if bounty.url %} href="{{ bounty.url }}" | ||
{% elif bounty.github_url %} href="{{ bounty.github_url }}" | ||
{% endif %}> | ||
<div class="avatar-container col-1 justify-content-center special_tag hide_min_viewport"> | ||
{% if bounty.funding_organisation %} | ||
<img class="avatar" src="{% url 'org_avatar' bounty.funding_organisation %}"> | ||
{% else %} | ||
<img class="avatar" src="{% url 'org_avatar' bounty.bounty_owner_github_username %}"> | ||
{% endif %} | ||
</div> | ||
<div class="col-12 col-md-7 d-flex flex-column"> | ||
<div class="bounty-detail"> | ||
<div class="title font-subheader"> | ||
{{ bounty.title }} | ||
</div> | ||
|
||
<div class="bounty-summary col-12"> | ||
<div class="info font-caption"> | ||
{% if bounty.experience_level %} | ||
{{ bounty.experience_level }} • | ||
{% endif %} | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="col-12 col-md-4 tags fixed font-caption align-items-center"> | ||
{% if bounty.network != 'mainnet' %} | ||
<div class="tag network_warning"> | ||
<p> | ||
<span>{{ bounty.network }}</span> | ||
</p> | ||
</div> | ||
{% endif %} | ||
<div class="tag token"> | ||
<p> | ||
{{ bounty.value_true }} | ||
<span>{{ bounty.token_name }}</span> | ||
</p> | ||
</div> | ||
{% if bounty.value_in_usdt_now %} | ||
<div class="tag usd"> | ||
<p> | ||
{{ bounty.value_in_usdt_now }} | ||
<span>USD</span> | ||
</p> | ||
</div> | ||
{% endif %} | ||
</div> | ||
</a> | ||
{% endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters