Commit 5498660eb6164507619c1bc42d3a83a22b3678e6
1 parent
f1e92a83
Exists in
master
and in
31 other branches
Removing old deps from badger
Showing
3 changed files
with
0 additions
and
25 deletions
Show diff stats
colab/accounts/templates/accounts/user_detail.html
@@ -126,25 +126,6 @@ | @@ -126,25 +126,6 @@ | ||
126 | </div> | 126 | </div> |
127 | </div> | 127 | </div> |
128 | 128 | ||
129 | - | ||
130 | - {% if user_.badge_set.exists %} | ||
131 | - <div class="col-lg-8 col-md-12 col-sm-7"> | ||
132 | - <div class="panel panel-default"> | ||
133 | - <div class="panel-heading"> | ||
134 | - <h3 class="panel-title">{% trans "Badges" %}</h3> | ||
135 | - </div> | ||
136 | - <div class="panel-body"> | ||
137 | - <div> | ||
138 | - {% for badge in user_.badge_set.all %} | ||
139 | - {% translate badge as badge_trans %} | ||
140 | - <img src="data:image/png;base64,{{ badge.image_base64 }}" title="({{ badge_trans.title }}) {{ badge_trans.description }}" /> | ||
141 | - {% endfor %} | ||
142 | - </div> | ||
143 | - </div> | ||
144 | - </div> | ||
145 | - </div> | ||
146 | - {% endif %} | ||
147 | - | ||
148 | </div> <!-- End of user-profile row --> | 129 | </div> <!-- End of user-profile row --> |
149 | 130 | ||
150 | <div class="row"> | 131 | <div class="row"> |
misc/etc/cron.d/colab
@@ -4,8 +4,6 @@ | @@ -4,8 +4,6 @@ | ||
4 | 4 | ||
5 | 0 * * * * colab colab-admin cleanup_snippets &> /dev/null | 5 | 0 * * * * colab colab-admin cleanup_snippets &> /dev/null |
6 | 6 | ||
7 | -*/5 * * * * colab colab-admin update_badges &> /dev/null | ||
8 | - | ||
9 | * * * * * colab colab-admin import_proxy_data &> /dev/null | 7 | * * * * * colab colab-admin import_proxy_data &> /dev/null |
10 | 8 | ||
11 | 27 3 * * * colab colab-admin clearsessions &> /dev/null | 9 | 27 3 * * * colab colab-admin clearsessions &> /dev/null |
setup.py
@@ -19,10 +19,6 @@ REQUIREMENTS = [ | @@ -19,10 +19,6 @@ REQUIREMENTS = [ | ||
19 | 19 | ||
20 | ### Move out of colab (as plugins): | 20 | ### Move out of colab (as plugins): |
21 | 21 | ||
22 | - # Deps for badger | ||
23 | - 'Pillow==2.8.1', | ||
24 | - 'django-i18n-model>=0.0.7', | ||
25 | - | ||
26 | # Deps for super_archives | 22 | # Deps for super_archives |
27 | 'etiquetando==0.1', | 23 | 'etiquetando==0.1', |
28 | 'django-taggit>=0.12.1', | 24 | 'django-taggit>=0.12.1', |