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

#4321 Update Links for Marketing #4341

Merged
merged 5 commits into from
May 12, 2019
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ app/media/
venv/
.coverage
.vscode/
.vs/
node_modules/
gcoin/
.cache/
Expand Down Expand Up @@ -44,3 +45,4 @@ app/cache/

# Autogenerated Documentation
_build/
**/.vs
9 changes: 6 additions & 3 deletions app/retail/templates/bounties/contributor/story.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,11 @@
</div>
<div class="col-12 col-md-5 offset-md-2 my-auto mt-4 order-md-2 g-fadein" data-fade-duration=1000 data-fade-direction="right">
<p>
There are open issues in our Issues Explorer for all Python, JavaScript, Rust, Go, Solidity,
Node.js, and many more developers.
There are open issues & bug bounties in our <a href="{% url 'explorer' %}">Issue Explorer</a> for
{% for subject in contributor_list %}
<a href="{% url 'contributor_bounties' tech_stack=subject.link %}">{{subject.text}}</a>,
{% endfor %}
and much more.
</p>
</div>
</div>
Expand All @@ -57,4 +60,4 @@
</div>
</div>

</div>
</div>
10 changes: 10 additions & 0 deletions app/retail/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,16 @@ def contributor_bounties(request, tech_stack):
'hide_newsletter_consent': True,
'gitcoin_description': gitcoin_description,
'projects': projects,
'contributor_list': [
{ 'link': "/python", 'text': "Python"},
{ 'link': "/javascript", 'text': "JavaScript"},
{ 'link': "/rust", 'text': "Rust"},
{ 'link': "/solidity", 'text': "Solidity"},
{ 'link': "/design", 'text': "Design"},
{ 'link': "/html", 'text': "HTML"},
{ 'link': "/ruby", 'text': "Ruby"},
{ 'link': "/css", 'text': "CSS"},
]
}

try:
Expand Down