Commit c2a2f87f36c0e7d241923d45645c26a0ee21386b
1 parent
def63ea5
Exists in
master
and in
39 other branches
Removing open data (needs to be reimplemented)
Showing
3 changed files
with
0 additions
and
14 deletions
Show diff stats
src/colab/urls.py
| ... | ... | @@ -14,13 +14,8 @@ urlpatterns = patterns('', |
| 14 | 14 | url(r'^$', 'home.views.index', name='home'), |
| 15 | 15 | |
| 16 | 16 | url(r'^search/', include('search.urls')), |
| 17 | - url(r'open-data/$', TemplateView.as_view(template_name='open-data.html'), | |
| 18 | - name='opendata'), | |
| 19 | - | |
| 20 | 17 | url(r'^archives/', include('super_archives.urls')), |
| 21 | - | |
| 22 | 18 | url(r'^api/', include('api.urls')), |
| 23 | - | |
| 24 | 19 | url(r'^rss/', include('rss.urls')), |
| 25 | 20 | |
| 26 | 21 | url(r'^user/', include('accounts.urls')), # Kept for backwards compatibility | ... | ... |
src/templates/base.html
| ... | ... | @@ -153,7 +153,6 @@ |
| 153 | 153 | <div class="row"> </div> |
| 154 | 154 | |
| 155 | 155 | {% block footer %} |
| 156 | - <p class="col-lg-12 text-center"><a href="{% url 'opendata' %}"><img src="{{ STATIC_URL }}img/opendata3.png"/></a></p> | |
| 157 | 156 | <p class="col-lg-12 text-center">{% trans "Last email imported at" %} {{ last_imported_message.received_time|date:'DATETIME_FORMAT' }}</p> |
| 158 | 157 | <div class="row"> |
| 159 | 158 | </div> | ... | ... |