Commit 5498660eb6164507619c1bc42d3a83a22b3678e6

Authored by Sergio Oliveira
1 parent f1e92a83

Removing old deps from badger

colab/accounts/templates/accounts/user_detail.html
... ... @@ -126,25 +126,6 @@
126 126 </div>
127 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 129 </div> <!-- End of user-profile row -->
149 130  
150 131 <div class="row">
... ...
misc/etc/cron.d/colab
... ... @@ -4,8 +4,6 @@
4 4  
5 5 0 * * * * colab colab-admin cleanup_snippets &> /dev/null
6 6  
7   -*/5 * * * * colab colab-admin update_badges &> /dev/null
8   -
9 7 * * * * * colab colab-admin import_proxy_data &> /dev/null
10 8  
11 9 27 3 * * * colab colab-admin clearsessions &> /dev/null
... ...
setup.py
... ... @@ -19,10 +19,6 @@ REQUIREMENTS = [
19 19  
20 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 22 # Deps for super_archives
27 23 'etiquetando==0.1',
28 24 'django-taggit>=0.12.1',
... ...