Move main app static media files to static/main/images

This commit is contained in:
Roberto Rosario
2015-01-26 16:29:30 -04:00
parent 8c3eb6714d
commit 1ca15b1f84
4 changed files with 2 additions and 2 deletions

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

Before

Width:  |  Height:  |  Size: 153 KiB

After

Width:  |  Height:  |  Size: 153 KiB

@@ -23,5 +23,5 @@
{% trans 'Released under the Apache 2.0 License' %}
</p>
<div class="tc">
<img src="{% static 'images/mayan_logo_landscape_rough.png' %}"/>
<img src="{% static 'main/images/mayan_logo_landscape_rough.png' %}"/>
</div>
+1 -1
View File
@@ -11,5 +11,5 @@ urlpatterns = patterns('main.views',
)
urlpatterns += patterns('',
(r'^favicon\.ico$', RedirectView.as_view(url=static('images/favicon.ico'))),
(r'^favicon\.ico$', RedirectView.as_view(url=static('main/images/favicon.ico'))),
)