Skip to content

Commit cb6dd65

Browse files
Merge pull request gitcoinco#5324 from thelostone-mc/stb
stable -> master
2 parents a04dfea + fce8e6c commit cb6dd65

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+2050
-472
lines changed

app/app/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
env.read_env(str(root.path('app/.env'))) # reading .env file
3939

4040
DEBUG = env.bool('DEBUG', default=True)
41-
QUESTS_LIVE = DEBUG
41+
QUESTS_LIVE = True
4242
ENV = env('ENV', default='local')
4343
DEBUG_ENVS = env.list('DEBUG_ENVS', default=['local', 'stage', 'test'])
4444
IS_DEBUG_ENV = ENV in DEBUG_ENVS

app/app/urls.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@
9898
url(r'^api/v0.1/profile/(.*)?/keywords', dashboard.views.profile_keywords, name='profile_keywords'),
9999
url(r'^api/v0.1/profile/(.*)?/activity.json', dashboard.views.profile_activity, name='profile_activity'),
100100
url(r'^api/v0.1/profile/(.*)?/earnings.csv', dashboard.views.profile_earnings, name='profile_earnings'),
101+
url(r'^api/v0.1/profile/(.*)?/ratings/(.*).csv', dashboard.views.profile_ratings, name='profile_ratings'),
101102
url(r'^api/v0.1/profile/(.*)?/viewers.csv', dashboard.views.profile_viewers, name='profile_viewers'),
102103
url(r'^api/v0.1/profile/(.*)?/spent.csv', dashboard.views.profile_spent, name='profile_spent'),
103104
url(r'^api/v0.1/profile/banner', dashboard.views.change_user_profile_banner, name='change_user_profile_banner'),
@@ -157,6 +158,7 @@
157158
# quests
158159
path('quests/', quests.views.index, name='quests_index'),
159160
re_path(r'^quests/(?P<obj_id>\d+)/(?P<name>\w*)', quests.views.details, name='quest_details'),
161+
re_path(r'^quests/new/?', quests.views.newquest, name='newquest'),
160162

161163
# Contributor dashboard
162164
path(

app/assets/v2/audio/boss-battle1.mid

26.6 KB
Binary file not shown.

app/assets/v2/audio/boss-battle2.mid

22 KB
Binary file not shown.

app/assets/v2/audio/boss-battle3.mid

39.6 KB
Binary file not shown.

app/assets/v2/audio/boss-battle4.mid

14.7 KB
Binary file not shown.

app/assets/v2/css/products.css

Lines changed: 42 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,54 @@
2020
color: #ffffff;
2121
}
2222

23-
.quests{
24-
background-color: #55508e;
23+
.hackathons{
24+
background-color: #ff92be;
2525
color: #ffffff;
2626
}
2727

28-
.quests span img{
29-
max-width: 50px;
28+
.quests{
29+
background-color: #55508e;
30+
color: #ffffff;
3031
}
3132

3233
.codefund{
3334
background-color: #4c008f;
3435
color: #ffffff;
3536
}
3637

38+
.matching{
39+
background-color: #444;
40+
color: #ffffff;
41+
}
42+
43+
.matching img,
44+
.hackathons img{
45+
max-width: 500px;
46+
}
47+
.quests span img{
48+
max-width: 50px;
49+
}
50+
3751
.labs{
3852
background-color: #bf2781;
3953
color: #ffffff;
54+
}
4055

56+
.tag
57+
{
58+
background-color: #e7f0fa;
59+
color: var(--gc-blue);
60+
font-size: 10px;
61+
display: block;
62+
list-style: none;
63+
padding: 5px;
64+
width: 66px;
4165
}
4266

67+
.codefund .tag
68+
{
69+
width: 140px;
70+
}
4371
@media(min-width: 1200px) {
4472
.intro-header{
4573
font-size:76px;
@@ -141,6 +169,16 @@
141169
color: #000;
142170
}
143171

172+
.button-hackathons{
173+
background-color: #ffa2de;
174+
color: white;
175+
}
176+
177+
.button-matching{
178+
background-color: #222;
179+
color: white;
180+
}
181+
144182
.button-labs{
145183
background-color: #782456;
146184
color: #fff;

0 commit comments

Comments
 (0)