From b96f60e7795f5920c7208de745dc3be5cc2f1b9d Mon Sep 17 00:00:00 2001 From: bkfox Date: Thu, 5 Sep 2019 18:55:44 +0200 Subject: [PATCH] work on admin ui --- aircox/admin/article.py | 1 + aircox/admin/episode.py | 1 + aircox/admin/page.py | 2 + aircox/admin/sound.py | 6 +- aircox/models/__init__.py | 2 +- .../__pycache__/__init__.cpython-37.pyc | Bin 559 -> 577 bytes aircox/models/__pycache__/page.cpython-37.pyc | Bin 6175 -> 6177 bytes aircox/models/page.py | 2 +- aircox/static/aircox/css/layout.css | 627 ------------------ aircox/static/aircox/images/LICENSE.TXT | 130 ---- aircox/static/aircox/images/README.md | 14 - aircox/static/aircox/images/add.png | Bin 327 -> 0 bytes aircox/static/aircox/images/calendar_day.png | Bin 340 -> 0 bytes .../static/aircox/images/calendar_month.png | Bin 318 -> 0 bytes aircox/static/aircox/images/clock.png | Bin 1584 -> 0 bytes aircox/static/aircox/images/close.png | Bin 777 -> 0 bytes aircox/static/aircox/images/comments.png | Bin 701 -> 0 bytes aircox/static/aircox/images/exit.png | Bin 855 -> 0 bytes aircox/static/aircox/images/facebook.png | Bin 545 -> 0 bytes aircox/static/aircox/images/feed.png | Bin 1484 -> 0 bytes aircox/static/aircox/images/gplus.png | Bin 1410 -> 0 bytes aircox/static/aircox/images/grow.png | Bin 1620 -> 0 bytes aircox/static/aircox/images/home.png | Bin 1376 -> 0 bytes aircox/static/aircox/images/info.png | Bin 679 -> 0 bytes aircox/static/aircox/images/list.png | Bin 391 -> 0 bytes aircox/static/aircox/images/listen.png | Bin 1397 -> 0 bytes aircox/static/aircox/images/loading.png | Bin 2156 -> 0 bytes aircox/static/aircox/images/logo.png | Bin 7275 -> 0 bytes aircox/static/aircox/images/mail.png | Bin 952 -> 0 bytes aircox/static/aircox/images/on_air.png | Bin 1955 -> 0 bytes aircox/static/aircox/images/pause.png | Bin 311 -> 0 bytes aircox/static/aircox/images/play.png | Bin 2017 -> 0 bytes aircox/static/aircox/images/playback_next.png | Bin 848 -> 0 bytes aircox/static/aircox/images/playback_prev.png | Bin 884 -> 0 bytes aircox/static/aircox/images/redo.png | Bin 971 -> 0 bytes aircox/static/aircox/images/reload.png | Bin 1256 -> 0 bytes aircox/static/aircox/images/schuffle.png | Bin 1425 -> 0 bytes aircox/static/aircox/images/search.png | Bin 1348 -> 0 bytes aircox/static/aircox/images/settings.png | Bin 1153 -> 0 bytes aircox/static/aircox/images/share.png | Bin 1414 -> 0 bytes aircox/static/aircox/images/tags.png | Bin 669 -> 0 bytes aircox/static/aircox/images/tiles_large.png | Bin 316 -> 0 bytes aircox/static/aircox/images/tumblr.png | Bin 696 -> 0 bytes aircox/static/aircox/images/twitter.png | Bin 1568 -> 0 bytes aircox/static/aircox/main.css | 3 + aircox/static/aircox/main.js | 4 +- .../admin/aircox/page_change_form.html | 5 - aircox/templates/admin/base.html | 112 ++++ aircox/templates/admin/base_site.html | 10 + aircox/templates/admin/change_list.html | 89 +++ aircox/templates/aircox/article_detail.html | 2 +- aircox/templates/aircox/base.html | 2 + .../templates/aircox/diffusion_timetable.html | 5 +- aircox/templates/aircox/episode_detail.html | 6 +- aircox/templates/aircox/log_list.html | 2 - aircox/templates/aircox/page.html | 15 - aircox/templates/aircox/program_base.html | 2 +- aircox/templates/aircox/program_detail.html | 3 +- aircox/views/page.py | 37 +- assets/admin/admin.scss | 26 + assets/admin/index.js | 3 + assets/index.js | 6 +- assets/styles.scss | 4 + instance/sample_settings.py | 1 + webpack.config.js | 9 +- 65 files changed, 314 insertions(+), 817 deletions(-) delete mode 100755 aircox/static/aircox/css/layout.css delete mode 100755 aircox/static/aircox/images/LICENSE.TXT delete mode 100755 aircox/static/aircox/images/README.md delete mode 100755 aircox/static/aircox/images/add.png delete mode 100644 aircox/static/aircox/images/calendar_day.png delete mode 100644 aircox/static/aircox/images/calendar_month.png delete mode 100755 aircox/static/aircox/images/clock.png delete mode 100644 aircox/static/aircox/images/close.png delete mode 100755 aircox/static/aircox/images/comments.png delete mode 100644 aircox/static/aircox/images/exit.png delete mode 100755 aircox/static/aircox/images/facebook.png delete mode 100755 aircox/static/aircox/images/feed.png delete mode 100755 aircox/static/aircox/images/gplus.png delete mode 100755 aircox/static/aircox/images/grow.png delete mode 100755 aircox/static/aircox/images/home.png delete mode 100644 aircox/static/aircox/images/info.png delete mode 100755 aircox/static/aircox/images/list.png delete mode 100755 aircox/static/aircox/images/listen.png delete mode 100755 aircox/static/aircox/images/loading.png delete mode 100755 aircox/static/aircox/images/logo.png delete mode 100755 aircox/static/aircox/images/mail.png delete mode 100755 aircox/static/aircox/images/on_air.png delete mode 100755 aircox/static/aircox/images/pause.png delete mode 100755 aircox/static/aircox/images/play.png delete mode 100644 aircox/static/aircox/images/playback_next.png delete mode 100644 aircox/static/aircox/images/playback_prev.png delete mode 100644 aircox/static/aircox/images/redo.png delete mode 100644 aircox/static/aircox/images/reload.png delete mode 100644 aircox/static/aircox/images/schuffle.png delete mode 100755 aircox/static/aircox/images/search.png delete mode 100644 aircox/static/aircox/images/settings.png delete mode 100755 aircox/static/aircox/images/share.png delete mode 100644 aircox/static/aircox/images/tags.png delete mode 100755 aircox/static/aircox/images/tiles_large.png delete mode 100755 aircox/static/aircox/images/tumblr.png delete mode 100755 aircox/static/aircox/images/twitter.png create mode 100644 aircox/templates/admin/base.html create mode 100644 aircox/templates/admin/base_site.html create mode 100644 aircox/templates/admin/change_list.html create mode 100644 assets/admin/admin.scss create mode 100644 assets/admin/index.js diff --git a/aircox/admin/article.py b/aircox/admin/article.py index 06e2bbc..b429148 100644 --- a/aircox/admin/article.py +++ b/aircox/admin/article.py @@ -13,6 +13,7 @@ __all__ = ['ArticleAdmin'] class ArticleAdmin(PageAdmin): list_display = PageAdmin.list_display + ('program',) list_filter = ('program',) + search_fields = PageAdmin.search_fields + ['program__title'] # TODO: readonly field fieldsets = copy.deepcopy(PageAdmin.fieldsets) diff --git a/aircox/admin/episode.py b/aircox/admin/episode.py index ce307ae..08ec4ec 100644 --- a/aircox/admin/episode.py +++ b/aircox/admin/episode.py @@ -50,6 +50,7 @@ class DiffusionInline(DiffusionBaseAdmin, admin.TabularInline): class EpisodeAdmin(PageAdmin): list_display = PageAdmin.list_display + ('program',) list_filter = ('program',) + search_fields = PageAdmin.search_fields + ['program__title'] readonly_fields = ('program',) fieldsets = copy.deepcopy(PageAdmin.fieldsets) diff --git a/aircox/admin/page.py b/aircox/admin/page.py index 1e16eb1..a96f559 100644 --- a/aircox/admin/page.py +++ b/aircox/admin/page.py @@ -14,6 +14,7 @@ __all__ = ['CategoryAdmin', 'PageAdmin', 'NavItemInline'] class CategoryAdmin(admin.ModelAdmin): list_display = ['pk', 'title', 'slug'] list_editable = ['title', 'slug'] + search_fields = ['title'] fields = ['title', 'slug'] prepopulated_fields = {"slug": ("title",)} @@ -27,6 +28,7 @@ class PageAdmin(admin.ModelAdmin): change_form_template = 'admin/aircox/page_change_form.html' + search_fields = ['title', 'category__title'] fieldsets = [ ('', { 'fields': ['title', 'slug', 'category', 'cover', 'content'], diff --git a/aircox/admin/sound.py b/aircox/admin/sound.py index 4800ee9..5aca87b 100644 --- a/aircox/admin/sound.py +++ b/aircox/admin/sound.py @@ -34,6 +34,8 @@ class SoundAdmin(admin.ModelAdmin): list_display = ['id', 'name', 'program', 'type', 'duration', 'is_public', 'is_good_quality', 'episode', 'filename'] list_filter = ('program', 'type', 'is_good_quality', 'is_public') + + search_fields = ['name', 'program'] fieldsets = [ (None, {'fields': ['name', 'path', 'type', 'program', 'episode']}), (None, {'fields': ['embed', 'duration', 'is_public', 'mtime']}), @@ -50,7 +52,9 @@ class TrackAdmin(admin.ModelAdmin): list_display = ['pk', 'artist', 'title', 'tag_list', 'episode', 'sound', 'timestamp'] list_editable = ['artist', 'title'] - list_filter = ['sound', 'episode', 'artist', 'title', 'tags'] + list_filter = ['artist', 'title', 'tags'] + + search_fields = ['artist', 'title'] fieldsets = [ (_('Playlist'), {'fields': ['episode', 'sound', 'position', 'timestamp']}), (_('Info'), {'fields': ['artist', 'title', 'info', 'tags']}), diff --git a/aircox/models/__init__.py b/aircox/models/__init__.py index 18bef4e..a312fef 100644 --- a/aircox/models/__init__.py +++ b/aircox/models/__init__.py @@ -1,5 +1,5 @@ from .article import Article -from .page import Category, Page, NavItem +from .page import Category, Page, Comment, NavItem from .program import Program, Stream, Schedule from .episode import Episode, Diffusion from .log import Log diff --git a/aircox/models/__pycache__/__init__.cpython-37.pyc b/aircox/models/__pycache__/__init__.cpython-37.pyc index a1a951d5c563287e0aecccf1b961cf970474b93a..a6d273795b0d7b28d184ff2b490b1c41e8b2de8b 100644 GIT binary patch delta 329 zcmW-czfQw25XNnq#z`8tX-WSuA_ml{Pk;neVn$*+iNPXP6v>yg*Dx@3;RUKb1yg56 zUVsO%!~^gOOxQWeKi~I#XIXa&z5;nKWx`y2vhDNYATRj);reoqA%vV2tmqkm5kwe6 zj0q&27nlL2kfH?H>Ao4_2u58WnheJ<#tBS1EzCLQkmD4losP^5=P-AD{KS^YFLz%r zxfOTRRxd^`0~@VXo9nWnHyb>vQd_ZZ5Ov)izPEgFyyaJW3f(I!Hq?})kc3kddBhGN z^rqT1g(klj4IFIGxXILq{ay1~7bJZ&^oH2As;!!uM&8OCETgfzJ{Zls@vOECZd delta 294 zcmW-c&q~BF5XKYRZTc^5*KJokiU;Xq=$-{(4+{exiY=v(+16=2c+yuW`xKsh245qB zci+K-NeA*}zTYW#CS)sFH|fIuI73?NvTt3r$* z!WiPkuav|DlBM@liWy|MhV|lwI>!xcFo%5czAA7FThj-7R))Xad|PrYZfWYCR8u2%=N*ju&6lw@I##QoM${XCp-HG!>&N? diff --git a/aircox/models/__pycache__/page.cpython-37.pyc b/aircox/models/__pycache__/page.cpython-37.pyc index 7e9d029cdfe5fcdce5b0f82ea41b5e09739f1c5a..312883e2baa7c3f5ac6957dcdc6c52c7b4a68868 100644 GIT binary patch delta 1831 zcmZuxTW=dx5ccscz9qJI<2Z3sY^SN4rAbMsS_Onu+@wvKiYUYmDXGx1cuy0P&2DnM zZUKS9O@PD`nirm+g-5806!8mqKtjL+5@baFzqv6;to|G1p-hy`UgBM{jZl9G}+2-K->Iqd+lr!*m{BBbAK1%CuSWOhz z0DP1vCjG_}dj-Br+>Vh7!&E^{j^uY2$2zx|Z1hvV#gMN)Cio*+D@(zXCkx1T5@u2_ z_+f@mR>4;49X1YQot1+8!VJ0XpGk?9GqBOQ^6VuF5b_c&?wb6L(Y9PMOS`*#sA09d z@Vc?gMV06SF+lCQSDu&dVvhD+Bsiw}rfYcU@Llmbblr3sx-Od_s8B(5h<^C5t1mN1 zCY_5oOOS`5bdgnHI$g|BQX)wpbEF|4#^LSsD0>DTrY~$>BSOB9D`Z_q@M7!2S?9ui zQ%n&zNia(GHNn-{a2jaA!Nli|{q0Y1MIBq>Q%f=(clD zH%wEE<7P7u4g_YktT^03IWojcDDWR_$3(R@QJuVoqXVn*4`L7=W(!ldNOPM$6R-0( zTz{5O7%g5cYa)$A9^;6UWX^V>>iITbjreqEt{-32xE^+B9SxwHSf5@xCV8tk>@B zI?xIf1W0hLp2QI-<&LVVfP};iApu7u#NH4>A{QhMZ~}>$w`mePwX~yo-+VJ~e%^b& zTllyz@qA}z)Q7*=zl~RSQa;~rw0QIjpfZP_9lbMg@3qZ9d5HNx8P72&4dRL^Ye69@tM{j>IU5!;nJD@-G7qdh)H7EWaJR8XiMXkzt(w5)2*bvw~?txfHU&})lyRYZg9iYtZg^c zw2Yfg24nos@X6I-ViZug0jp`6kVdr}EY^1zC;>N8w<QAYXSk)3hT=Mb$0J=g%la@?TZY%suaYC8;@ndf(+ z*_c-?QP10)N=13f6ebIG#xAg$I9hHh+uU0Ce2|$Gc)gexPxl1k0 zm)6xvap}r(aX}T=1D+r=O$1JopzgW@t99FOj2))dG}Bzh>0^@KZJ`Fb(ZxD2W7B$( zjo*T9Lc;1osj{+u>5`}pViZagOOFc7^7p$7(pmmh_w?=s0>n)_Pucp-o6HG(@U6=A3{)5NL|x`U@>o=9RG3DnNuXJd5E zdcJ$g?I_l3H9XR{cW*rufT=;oVtW7(RRpSCj;_ z_T6jcIud|3!}#-RasI-B_u`1@i9TWFEkxntPNRWla%-bz~&agIHQhStH4&6V(&!#_&uoRXc$A9j9CnYY5iP#aZ zEVue*q$U1Y-;YwB-%O2rw_Z#z%Rfz>-B=jLC{(;oNnembnCnm{n^c&JO{!_my4e`nJ2ht1tetK|_dJahv?Oy!% SbRiy>qrqgnCzf1KM*jz0XL~LH diff --git a/aircox/models/page.py b/aircox/models/page.py index 990fdeb..648426b 100644 --- a/aircox/models/page.py +++ b/aircox/models/page.py @@ -16,7 +16,7 @@ from model_utils.managers import InheritanceQuerySet from .station import Station -__all__ = ['Category', 'PageQuerySet', 'Page', 'NavItem'] +__all__ = ['Category', 'PageQuerySet', 'Page', 'Comment', 'NavItem'] headline_re = re.compile(r'(

)?' diff --git a/aircox/static/aircox/css/layout.css b/aircox/static/aircox/css/layout.css deleted file mode 100755 index ff6f184..0000000 --- a/aircox/static/aircox/css/layout.css +++ /dev/null @@ -1,627 +0,0 @@ -/** - * Define rules for the default layouts, and some useful classes - */ - -/** general **/ -body { - background-color: #F2F2F2; - font-family: "Myriad Pro",Calibri,Helvetica,Arial,sans-serif; -} - -h1, h2, h3, h4, h5 { - font-family: "Myriad Pro",Calibri,Helvetica,Arial,sans-serif; - margin: 0.4em 0em; -} - -h1:first-letter, h2:first-letter, h3:first-letter, h4:first-letter { - text-transform: capitalize; -} - -h1 { font-size: 1.4em; } -h2 { font-size: 1.2em; } -h3 { font-size: 0.9em; } -h4 { font-size: 0.8em; } - -h1 > *, h2 > *, h3 > *, h4 > * { vertical-align: middle; } - - -a { - cursor: pointer; - text-decoration: none; - color: #616161; -} - -a:hover { color: #007EDF; } -a:hover > .small_icon { box-shadow: 0em 0em 0.1em #007EDF; } - -ul { margin: 0em; } - - -/**** position & box ****/ -.float_right { float: right; } -.float_left { float: left; } - - -.flex_row { - display: -webkit-flex; - display: flex; - -webkit-flex-direction: row; - flex-direction: row; -} - -.flex_column { - display: -webkit-flex; - display: flex; - -webkit-flex-direction: column; - flex-direction: column; -} - -.flex_row > .flex_item, -.flex_column > .flex_item { - -webkit-flex: auto; - flex: auto; -} - - -.small { - font-size: 0.8em; -} - - - -/**** indicators & info ****/ -time, .tags { - font-size: 0.9em; - color: #616161; -} - -.info { - font-size: 0.9em; - padding: 0.1em; - color: #007EDF; -} - -.error { color: red; } -.warning { color: orange; } -.success { color: green; } - -.icon { - max-width: 2em; - max-height: 2em; - vertical-align: middle; -} - -.small_icon { - max-height: 1.5em; - vertical-align: middle; -} - - -/** main layout **/ -body > * { - max-width: 92em; - margin: 0em auto; - padding: 0em; -} - - -.menu { - padding: 0.4em; -} - -.menu:empty { - display: none; -} - - -.menu.row section { - display: inline-block; -} - -.menu.col > section { - margin-bottom: 1em; -} - - -/**** top + header layout ****/ -body > .top { - position: fixed; - z-index: 10000000; - top: 0; - left: 0; - width: 100%; - max-width: 100%; - - margin: 0em auto; - background-color: white; - border-bottom: 0.1em #dfdfdf solid; - box-shadow: 0em 0.1em 0.1em rgba(255,255,255,0.7); - box-shadow: 0em 0.1em 0.5em rgba(0,0,0,0.1); - - transition: opacity 1.5s; -} - - body > .top > .menu { - max-width: 92em; - height: 2.5em; - margin: 0em auto; - } - - body[scrollY] > .top { - opacity: 0.1; - transition: opacity 1.5s 1s; - } - - body > .top:hover { - opacity: 1.0; - transition: opacity 1.5s; - } - - -body > .header { - overflow: hidden; - margin-top: 3.3em; - margin-bottom: 1em; -} - - /** FIXME: remove this once image slides impled **/ - body > .header > div { - width: 15000%; - } - - body > .header > div > section { - margin: 0; - margin-right: -0.4em; - } - - - -/**** page layout ****/ -.page { - display: flex; -} - -.page > main { - flex: auto; - - overflow: hidden; - margin: 0em 0em; - border-radius: 0.4em; - border: 0.1em #dfdfdf solid; - - background-color: rgba(255,255,255,0.9); - box-shadow: inset 0.1em 0.1em 0.2em rgba(255, 255, 255, 0.8); -} - - -.page > nav { - flex: 1; - width: 50em; - overflow: hidden; - max-width: 16em; -} - - .page > .menu.col:first-child { margin-right: 2em; } - .page > main + .menu.col { margin-left: 2em; } - - - -/**** page main ****/ -main:not(.detail) h1 { - margin: 0em 0em 0.4em 0em; -} - -main .post_content { - display: block; -} - -main .post_content section { - display: inline-block; - width: calc(50% - 1em); - vertical-align: top; -} - - -main.detail { - padding: 0em; - margin: 0em; -} - - main > .content { - padding: 1em; - } - - main > header { - margin: 0em; - padding: 1em; - position: relative; - } - - main > header .foreground { - position: absolute; - left: 0em; - top: 0em; - width: calc(100% - 2em); - padding: 1em; - } - - main > header h1 { - width: calc(100% - 2em); - margin: 0em; - margin-bottom: 0.8em; - } - - main header .headline { - display: inline-block; - width: calc(60% - 0.8em); - min-height: 1.2em; - font-size: 1.2em; - font-weight: bold; - } - - main > header .background { - margin: -1em; - height: 17em; - overflow: hidden; - position: relative; - } - - main > header .background img { - position: absolute; - /*! top: -40%; */ - /*! left: -40%; */ - width: 100%; - min-height: 100%; - filter: blur(20px); - opacity: 0.3; - } - - main > header .cover { - right: 0em; - top: 1em; - width: auto; - max-height: calc(100% - 2em); - max-width: calc(40% - 2em); - margin: 1em; - position: absolute; - box-shadow: 0em 0em 4em rgba(0, 0, 0, 0.4); - } - - - -/** sections **/ -body section ul { - padding: 0em; - padding-left: 1em; -} - - -/**** link list ****/ -.menu.row .section_link_list > a { - display: inline-block; - margin: 0.2em 1em; -} - -.menu.col .section_link_list > a { - display: block; -} - - - - - -/** content: menus **/ -/** content: list & items **/ -.list { - width: 100%; -} - -ul.list, .list > ul { - padding: 0.4em; -} - -.list_item { - margin: 0.4em 0; -} - -.list_item > *:not(:last-child) { - margin-right: 0.4em; -} - -.list_item img.cover.big { - display: block; - max-width: 100%; - min-height: 15em; - margin: auto; -} - -.list_item img.cover.small { - margin-right: 0.4em; - border-radius: 0.4em; - float: left; - min-height: 64px; -} - -.list_item > * { - margin: 0em 0.2em; - vertical-align: middle; -} - - -.list nav { - text-align: center; - font-size: 0.9em; -} - - -/** content: list items in full page **/ -.content > .list:not(.date_list) .list_item { - min-width: 20em; - display: inline-block; - min-height: 2.5em; - margin: 0.4em; -} - -/** content: date list **/ -.date_list nav { - text-align:center; -} - - .date_list nav a { - display: inline-block; - width: 2em; - } - - .date_list nav a.date { - width: 4em; - } - - .date_list nav a[selected] { - color: #007EDF; - border-bottom: 0.2em #007EDF dotted; - } - -.date_list ul:not([selected]) { - display: none; -} - -.date_list ul:target { - display: block; -} - - .date_list h2 { - display: none; - } - -.date_list_item .cover.small { - width: 64px; - margin: 0.4em; -} - -.date_list_item h3 { - margin-top: 0em; -} - -.date_list_item time { - color: #007EDF; -} - - -.date_list_item.now { - padding: 0.4em; -} - - .date_list_item img.now { - width: 1.3em; - vertical-align: bottom; - } - - -/** content: date list in full page **/ -.content > .date_list .date_list_item time { - color: #007EDF; - font-size: 1.1em; - display: block; -} - - -.content > .date_list .date_list_item:nth-child(2n+1), -.date_list_item.now { - box-shadow: inset 0em 0em 3em rgba(0, 124, 226, 0.1); - background-color: rgba(0, 124, 226, 0.05); -} - -.content > .date_list { - padding: 0 10%; - margin: auto; - width: 80%; -} - - -/** content: comments **/ -.comments form input:not([type=checkbox]), -.comments form textarea { - display: inline-block; - width: 100%; - max-height: 6em; - margin: 0.2em 0em; - padding: 0.2em; -} - -.comments form input[type=checkbox], -.comments form button[type=submit] { - vertical-align:bottom; - margin: 0.2em 0em; - text-align: center; -} - -.comments form button[type=submit] { - float: right; -} - -.comments form #show_more:not(:checked) ~ .extra { - display: none; -} - -.comments label[for="show_more"] { - font-size: 0.8em; -} - -.comments ul { - margin-top: 2.5em; -} - -.comment { - list-style: none; - border: 1px #818181 dotted; - margin: 0.4em 0em; -} - - .comment .metadata { - font-size: 0.9em; - } - - .comment time { - float: right; - } - - -/** component: sound **/ -.component.sound { - display: flex; - flex-direction: row; - margin: 0.2em; - width: 100%; -} - - .component.sound[state="play"] button { - animation-name: sound-blink; - animation-duration: 4s; - animation-iteration-count: infinite; - animation-direction: alternate; - } - - @keyframes sound-blink { - from { background-color: rgba(255, 255, 255, 0); } - to { background-color: rgba(255, 255, 255, 0.6); } - } - - -.component.sound .button { - width: 4em; - height: 4em; - cursor: pointer; - position: relative; - margin-right: 0.4em; -} - - .component.sound .button > img { - width: 100%; - height: 100%; - } - - .component.sound button { - transition: background-color 0.5s; - background-color: rgba(255,255,255,0.1); - position: absolute; - cursor: pointer; - left: 0; - top: 0; - width: 100%; - height: 100%; - border: 0; - } - - .component.sound button:hover { - background-color: rgba(255,255,255,0.5); - } - - .component.sound button > img { - background-color: rgba(255,255,255,0.9); - border-radius: 50%; - } - -.component.sound .content { - position: relative; -} - - .component.sound .info { - text-align: right; - } - - .component.sound progress { - width: 100%; - position: absolute; - bottom: 0; - height: 0.4em; - } - - .component.sound progress:hover { - height: 1em; - } - - -/** component: playlist **/ -.component.playlist footer { - text-align: right; - display: block; -} - -.component.playlist .read_all { - display: none; -} - - .component.playlist .read_all + label { - display: inline-block; - padding: 0.1em; - margin-left: 0.2em; - cursor: pointer; - font-size: 1em; - box-shadow: inset 0em 0em 0.1em #818181; - } - - .component.playlist .read_all:not(:checked) + label { - border-left: 0.1em #818181 solid; - margin-right: 0em; - } - - .component.playlist .read_all:checked + label { - border-right: 0.1em #007EDF solid; - box-shadow: inset 0em 0em 0.1em #007EDF; - margin-right: 0em; - } - - -/** content: page **/ -main .body ~ section:not(.comments) { - width: calc(50% - 1em); - vertical-align: top; - display: inline-block; -} - -.meta .author .headline { - display: none; -} - - .meta .link_list > a { - font-size: 0.9em; - margin: 0em 0.1em; - padding: 0.2em; - line-height: 1.4em; - } - - .meta .link_list > a:hover { - border-radius: 0.2em; - background-color: rgba(0, 126, 223, 0.1); - } - - -/** content: others **/ -.list_item.track .title { - display: inline; - font-style: italic; - font-weight: normal; - font-size: 0.9em; -} - - diff --git a/aircox/static/aircox/images/LICENSE.TXT b/aircox/static/aircox/images/LICENSE.TXT deleted file mode 100755 index 075e935..0000000 --- a/aircox/static/aircox/images/LICENSE.TXT +++ /dev/null @@ -1,130 +0,0 @@ -This is a human-readable summary of (and not a substitute for) the license. -http://creativecommons.org/licenses/by-sa/4.0/ - ------- - -Disclaimer - -This license is acceptable for Free Cultural Works. -You are free to: - - Share — copy and redistribute the material in any medium or format - Adapt — remix, transform, and build upon the material - for any purpose, even commercially. - - The licensor cannot revoke these freedoms as long as you follow the license terms. - -Under the following terms: - - Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use. - - ShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original. - - No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits. - ------- - -Creative Commons Attribution-ShareAlike 4.0 International Public License - -By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. - -Section 1 – Definitions. - - Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. - Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License. - BY-SA Compatible License means a license listed at creativecommons.org/compatiblelicenses, approved by Creative Commons as essentially the equivalent of this Public License. - Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. - Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. - Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. - License Elements means the license attributes listed in the name of a Creative Commons Public License. The License Elements of this Public License are Attribution and ShareAlike. - Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License. - Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. - Licensor means the individual(s) or entity(ies) granting rights under this Public License. - Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. - Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. - You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning. - -Section 2 – Scope. - - License grant. - Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: - reproduce and Share the Licensed Material, in whole or in part; and - produce, reproduce, and Share Adapted Material. - Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. - Term. The term of this Public License is specified in Section 6(a). - Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material. - Downstream recipients. - Offer from the Licensor – Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. - Additional offer from the Licensor – Adapted Material. Every recipient of Adapted Material from You automatically receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material under the conditions of the Adapter’s License You apply. - No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. - No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). - - Other rights. - Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. - Patent and trademark rights are not licensed under this Public License. - To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties. - -Section 3 – License Conditions. - -Your exercise of the Licensed Rights is expressly made subject to the following conditions. - - Attribution. - - If You Share the Licensed Material (including in modified form), You must: - retain the following if it is supplied by the Licensor with the Licensed Material: - identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); - a copyright notice; - a notice that refers to this Public License; - a notice that refers to the disclaimer of warranties; - a URI or hyperlink to the Licensed Material to the extent reasonably practicable; - indicate if You modified the Licensed Material and retain an indication of any previous modifications; and - indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License. - You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. - If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. - ShareAlike. - - In addition to the conditions in Section 3(a), if You Share Adapted Material You produce, the following conditions also apply. - The Adapter’s License You apply must be a Creative Commons license with the same License Elements, this version or later, or a BY-SA Compatible License. - You must include the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy this condition in any reasonable manner based on the medium, means, and context in which You Share Adapted Material. - You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the rights granted under the Adapter's License You apply. - -Section 4 – Sui Generis Database Rights. - -Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: - - for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database; - if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section 3(b); and - You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. - -For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. - -Section 5 – Disclaimer of Warranties and Limitation of Liability. - - Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You. - To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You. - - The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. - -Section 6 – Term and Termination. - - This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. - - Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: - automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or - upon express reinstatement by the Licensor. - For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. - For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. - Sections 1, 5, 6, 7, and 8 survive termination of this Public License. - -Section 7 – Other Terms and Conditions. - - The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. - Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License. - -Section 8 – Interpretation. - - For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. - To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. - No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. - Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. - diff --git a/aircox/static/aircox/images/README.md b/aircox/static/aircox/images/README.md deleted file mode 100755 index c55e61b..0000000 --- a/aircox/static/aircox/images/README.md +++ /dev/null @@ -1,14 +0,0 @@ -# Android Developer Icons -Android Developer Icons is a custom icon set, created by [Opoloo](http://www.opoloo.com/). Included are: -* 250 hand-crafted, pixel-perfect icons in 5 sizes and 14 colors -* an icon font, made from the set -* all sources: .svg, .ai, .eps, .eot, .ttf, .woff - - - -## License -[Attribution-ShareAlike 4.0 International CC BY-SA 4.0] -(http://creativecommons.org/licenses/by-sa/4.0/) - -## More -We‘re always happy to hear from you, whether it’s a question about the icon set or giving us a heads-up where you used our beautiful little icons in a project. If you like, follow us at [Google+](https://plus.google.com/u/0/b/104776915031333350956/+Opoloo/posts), on [Twitter](https://twitter.com/Opoloo), or [shoot us an email](mailto: info@opoloo.com). \ No newline at end of file diff --git a/aircox/static/aircox/images/add.png b/aircox/static/aircox/images/add.png deleted file mode 100755 index 122ad5d9a07e680c9f7636397ac63b585547c850..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 327 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=EX7WqAsj$Z!;#Vf2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4ZGQ)# z_OzdTKc<&8nJ)wy6U?ByKoe6h?``%wt#8#A;84N8aJocs`n&^ofc|0dboFyt=akR{ E07a&7EC2ui diff --git a/aircox/static/aircox/images/calendar_day.png b/aircox/static/aircox/images/calendar_day.png deleted file mode 100644 index 545e28d1217b5f91256b4b8d08bcefb5539c2bf2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 340 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA1|-9oezpTCmSQK*5Dp-y;YjHK@;M7UB8!3Q zuY)k7lg8`{prB-lYeY$Kep*R+Vo@qXd3m{BW?pu2a$-TMUVc&f>~}U&Kt&flT^vI) z8sE-vAl*@0Mu$aNd zS@OcRu9Dv=+&g`Bw=Bw4Ib-d>n6Yikg;U1yN%t7J94^mg{35-wrILNt`pf_OD%mv{ fcv%-LWH7N8?#eHoKQE;L=s5;YS3j3^P6~}U&Kt;PfT^vI) z8sE-{=4wz7anZdsDLcz|?Mc_0`5lj5-!d_IuJ4#(bC>f@QcvGZ*}qJiH5jB=9TqcW z^vyhb@AvDUGENrZ?@l}BC#?S4dHHhH>{+r^%x8@!Sa(h}zL53Lo~@{7+i{=QOD;$U zFqi}zPYBAIe($T?3tpfpmnAi75AS_#`{!~)=Es)!?fIHG5-+}Rh zL-YxzDrT;RWtD6f%9p6V;0?)NzMpR|BiMcshO@jqJ98MV{zi5Jy}{t=>gTe~DWM4f D{0DT( diff --git a/aircox/static/aircox/images/clock.png b/aircox/static/aircox/images/clock.png deleted file mode 100755 index 5c8dbb0257e3bc908dfee971f691dea22f185397..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1584 zcmV-02G9A4P)fj*es*?tuZZj=qWQ3EO)2$$eSQ6Xr_)&jAYY8rb}xl1mC7757ewSZGZ&b7 zchvm=dH}jgsiy$C&1UnT?c}#@0=TYwP$_kRh>FadOX35-fQULGvfOI5UZu(hr{%zR`- z_cH)DC!HiG5+MBNe06qY??fZUv5^@_Tm&+w)zQW9VjIL+RX7iUxGGQVC78e)4 zBO~nrymTCADJs=n*FB!g<*pME4F-dyR;%@NT&!BHwh#otb!I+fbUpGs@7E;!i6&SH zmdoWcWDH(J+Pz-y#<=HPDK%URt~Z~5+lcP&Xe}4 z1MtCdoTWH}C)%6=`tLaCcDsS&I7`Za(zacxJr+xRhQ z28`lja*aZ40m41JA;RzZL;#=YHfH{zQmK5lsS*>3vorqdLaF!qHGsqd z5PdE}_?o?T>eQ+Iw!Ta*Cf6v$7GQmSeUsC019KwyzW;!T{?MA{K7IQ1qwR9mzI#8?C7UJ4(1<&*D6VbzsYi8ch%-7<+8A1-jon!#LPN$RpBLF}EboI7= zzkedGeH1*;TP95eB0A=}?)PzQO%4FMHhY9tZvmy$roB66K51hg1ycm2)Hkl{o*QRp zaxgiLgOvcGx&tlv(Q37N*v3Z`JkMJO@aK@6QkNDN7q|Snt5&Or_1Xb|ftjV_U?o7f z2j9`#MC784j~FrTZHU0k3c%H^c6vs{?%37|tQSHevMeIQy>w9t9o0ZP;kNmiC!i8 z7;>^kA_3a%_B#=|qqi~hp?p4nHEj`e6bc0=pU+=4t3x7kCu!L{lhRlcY*%S)S{$90 z$EOD*rblGb@8`T z*3SaS^L#3Vn0=KQA;c`t^QlXYH9(%{)4Hyo5b=>QwsyDIFUHs!5g+TiesX~zHl@VL zJR#)f6hp*aRaGyZem^Nq(+5Jx;%w~WWHR}EI2`_7%eDFinx+xw<^cc*A&WFkAKdMJ zR@=ND`=)6cVUuqKP!z?7Qfl9hheDXl0{|$c_C-;A*o8)Xi zAoBp08`(AKzsAMaRZ6`9{0B0mZOgL!6Z-Bb006yT`9eymH!0;N#(Sexqf*Mv>5KO% zrg?zK<@7a(*yaI#T0d}2*XBWcb&8>A0Jf7jHpI7IMuUF=UE3JVODQ)!6MN-T#kLg$ z&{deVSDPLPrz+MYZ-6fI0I)SJl{&UHJRbz%1)#eyV^!Jrzt;DRRjhAk=M2!*27+Z_ z)>Q!dwx>=2q2^DD31JPu7+ZJsus$VmS(dL|J+{lalNEpvVn!*Qx8tE_LtX7DrF3q4 z0%!%0BuRmY$MaaMgDn#TA|8_@DQxnscjEKYIi=Lz<>w2o{jjs3vT8UcpZ2r#rpfT8sdZ?X5zJRd;B00000NkvXX Hu0mjf{ts3O diff --git a/aircox/static/aircox/images/comments.png b/aircox/static/aircox/images/comments.png deleted file mode 100755 index b8d2839edc9204291e62b63e26f25106792802ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 701 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=EX7WqAsj$Z!;#Vf2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4bUrw7!NL+-&oh+ zH?MNKqUixK&KOVexhx;0Wncby{MhpuBcGA6kK|%mhuJy~)(vKn4P^|un;70Q+)81* z#kl1p(-!88$*dXd7u2{f@GUqyeV^E^95b_)2T48I$!DAvsR_oe+1kEI=k?z@`P)}s z_&RVLH2l2Tu*f&PC(__^F$W{VgYeZ-Nty2il4JNcmgO@oxfQqT+mrYvG<#<5X}H&S z==kH0xA$gGJN@*K#AY^z_Kt6toev(cdQf8*@3;IiAH%DC*K+PK*7}sXlx( z*<*PB^{#)qVg9Qon7C|7efE0)eB;mICrjD14^+QT-+Yr_>C?;ShR57NA`A=*R;^n7 zy>50Hvyz|tf!;0B0vij?i3V+T|17j-)hjNB+gG!;GBvO>2viF8xgFqrzjuHA)&Is_ z?hlNi!Dg~|;prz!BY!JPalbIC%)Ium;~3MaO=|=T)ptg_lsF!VoxXCNuExjzOy_ns zb=2+qZm#s{^Ups|&pW0SbjY;an|)!%&r@ggFR_bfy09FPkiRT%$5VSf*oEbe+Ln!P zs=U$}&+TLq>^6K0V!C{BaJda+cAeOMV8%)JM9dgW`@|H-$YK5GV4tb_2VhcT@O1Ta JS?83{1ONutH6;K5 diff --git a/aircox/static/aircox/images/exit.png b/aircox/static/aircox/images/exit.png deleted file mode 100644 index f220ed2940b383e8d7f3b1914158dc380b644602..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 855 zcmV-d1E~CoP)7oru-}KuQS!(s7(`%zOyoGcymG&F10m?(VSKxTm2kzXQ`fkOwK{Pa(u0 zj^q8ky}b`b+L%Y~9smF$ddAEq0F#+p08An}o2(~EquB68+QRJx41u6wy`8=9tV z$8o$tMCXBt1c>O#tR=Qm0cO5eK^q{VzsiWn>2|wJL{F0vwHZPga4pMfCkq!wKuWnC zMbUn;ywV{Q1i_uMZFD-Fi@L6Fo%|UBFbV&5R(+*=p(L}yGxN(Rir%HYQyT%#^VW1- z-%N%N!!R{GP?I^}dEVM+G|C+ws6h{Sp0^gq@s<$c+*I+4FbsFHysuQib=^zMya`|u zo`|0NzW+XJ8%l=|GhaoC@PJ~0AP9D(l&^te;ei@V;wXw<5z+l3;ei?m0D$lNAB(}G~?rSDdnkMWK~o$gqT?pk&+9J+yZG=OhFJRxnjz6LsMrK hei>Z~sAegkn%|hMIIEOya#sKV002ovPDHLkV1ijDcaZ=9 diff --git a/aircox/static/aircox/images/facebook.png b/aircox/static/aircox/images/facebook.png deleted file mode 100755 index 5841351b085050de8f1be80278ec84b882e9a3e0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 545 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=EX7WqAsj$Z!;#Vf2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4W5uKIe&h16;9+e!}|Hf-EPF*EZ+l+Y&2`kL|I3zHj?&)#(pcuo!Gs zU(~)VbKbL6lCvACpWmrEH|ydV#xs8|Zp$?-znj6568Y`KnZ$RCF4{2N`+a?*S@zq? z``?$(ert37=qop6g_aLrZ~t4Qq1XAs>(ip`ozDb6+^g?1iS>yzmtu^){#DsGJ@{I$ z+W`p|lgwi;SbcbNgj5#oUbSl8f2+Lj+WlL<9jUHYo|;^!oFLJreDa@|`T>bzom=x$ z(u)tAX`l30*Uy2&v4rJ-nqykr)YP4~a{6m8-K+g>?)Gh-ZXSyVmY_fgo#a;do2phA z!eGT9CECE(;KsUuc|joK3x*7k(5xq{e;9VxB;T2R@8n!ybTW9l`njxgN@xNA$Iaj1 diff --git a/aircox/static/aircox/images/feed.png b/aircox/static/aircox/images/feed.png deleted file mode 100755 index 0f1c1e5849a36dcd2e2c3814cb8b73df63d190ea..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1484 zcmZ`(c`(}v6#gaSNEH<<>Q1zEv~Joeb^QFYlGGWgvxrdY2#TQD9@*Abur0Q6q$!O| z(_M9StL`hxQY6?mOEFs6Ra#1QQ#7Mx)7hE*Z{N)KzIorgzrOe8%lG&7Qc==X0sue- zhlL0-cK-^5f~-GCIR8>cav30wh>+DqL@Yx#?@7akX2|xZz5)iCv2$eN{!C0rW?*Vu zW_EP?Ss*(*+bSU?DI+F2?W|R5dOUm0MHc|%aX83>m~&?}%!i?m(cFm?j`=;(h#%mX zv5g1&7}0~%4Z}sovBL*#6Ez{V4;;m<;%irp(fN!V5j_vFxM=hQeeTD3^A@>VN4mR1 zwCzsiE?UIKM({>t_X9(6T-{m3b2)Dl zExrTnIYZvYhwng!d286*2m$_+LnLtJOo=~_aKY~w(x9TELMP&_ebQz50eHnBl5WIn zy78mwcYA{yBZU{L%HtPZ=y!I%J4P3Rh-bFG)*K8l+tLVYQy?9E5oA>^5uDKknLzSE zv}MdPI6my{<0FI}m!BtA`(u|RQgwSbZ>V*H_D;_uDn5or>wxi5=wN(%A#i znwpey)VNrv5oc~>!u2m%I6j6!4Rl^kd26X{Q0c%H_SXlkSn@=+%$C?2}EtFRMp>`W5Cuu;_w2R#Qrc6{t1s;14_hNbC-+AsQCUyuXA5 z#q+5pMP8roo?V=%?0=B6{O*Vn#8gP*KdSqkGTXwtx;mY_sR14M76k?1+j(`2*VqEl(#bD%kAW#8%dPl^Q=0?FBIQyeJ<5O*OVJq##q}o!z7$One3><7q~gf?%lA` zv)r+!w?X@Y;fZiO;+rSmv$hnn^TO)0SS-(4I_ng&C5+fR=Uxa1T$-Z$uV;U@htYS- zmKPQlbm)!Ob|B`aOX`)0D(r##=!<#xn0m969Zb^DXlbc?IWY7EZkj8VO8*KFbC@)D zJS(|XMOAf2hguN3NQS1|vVGcA!sO05=xRGROK~ej6MXPqh4f_>n=)$|=V~O@>j1Y7 zkDvA|1o9#B7dtDK>gI&NE(7ZwH->Qu?}a6ff`x$WcY1s&Ji^-`bO+Binq|og;4r>W14z3152r?^ssI20 diff --git a/aircox/static/aircox/images/gplus.png b/aircox/static/aircox/images/gplus.png deleted file mode 100755 index 98d8b17f3b3baeaab0cfb95c5cc2dcc5dfb5bdf4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1410 zcmV-|1%3L7P)hX zSBf_Um4b-95Q~?B(u&@cf)@(<2b5|NZ@lnQ6ub&Zk!*H$Cv5{#wXmfXD{U>LXgArN z^Lo(~*6GCV&Y8^tv%jmI^D*Z+&(6$w&pQJVq16oA7GRsc0k#F$rf-040k-KIU|WD~ z`Ucn*V4J=HwguQ`)f?dE=@f?Hv7&_(L8Vf8tJ^-S{t8(22IRU0vJjCA0IIE4>nE-C zQy3o%tT9GavPwvzO1$WERN&)-o1NEVHobyTJH>kV1rWXhKQVX9Os*vnVC!N{Qy8I z^}2}cAR-cxwag6DiR2~kGoU;&GV);@$92#1?wy~Xe~*Y>Wado(TmWmCS!u10gkk8l zca)oaMMT#DjM$t!QBDIYmCA{!si_7Lk>fZAn0ZrHI{+*qZ+f0L+Fl+-QM1)*eJ&!c zJmVJ$Op>BXsWn9ODS$f}`Fj*aN7K)SAPAmk=9jWM|4LfQWn(4W<;a8LAP{qn$Jqkw4mx znK=}Ztg9lEUgRN)*bYw-(UndbYOT-Q`mL1Om?X(71&nWmu>nhA?Qs#g_FwHpB#z^_ zPDC_0Ik}FA-e%^zO~*GSmjR=rqeJb-aU9nN2M3Q5QF)mzXp zmuKvv$+Z^nfa+^vzZklZ!BW0qUlLi zcyMqq$tbRM88xm5Ju#rwYHdiDRjbusnfaKAbhUx%HNAQ-@LX15rBaDot=7l3a{%r1 z!~g(Khhg|cR^9CE>~F5?ek3CGUX0x>#(Mz~X^6;0X1*vQmqg?S5&aEd*?)O@dU{?d z^@)fa1Tb!@!Gv4}h)9EOZi33yYW3`LFG6nR3q?ey>!K)XDy5E#$U6YG=Fw3ExgtTO z)IbzP&9>u5L}Z+qH;KrDM6^ys9A<`y%oEXmL>t7QUXFn_EoRg<<$C5go`aWQi5c2`Z%~nfY)hlP4l#<~^lS z>D}$yw-2Z5hKGl%TI<`4SqX9(;QRg_0B->3>KOuHOQ}>kJT^A=ubtr1Tc*rgq}Sv! zV7a$BodDp0p`oGIGR}ED?>SA#WdMM?49DFuF)@+8b*zNR*1ixCk?2ZTbe-7GRsc0k#F$X4M<;5A`F~Cw0HS QZ~y=R07*qoM6N<$f+g3JG5`Po diff --git a/aircox/static/aircox/images/grow.png b/aircox/static/aircox/images/grow.png deleted file mode 100755 index df0755f52e7f5c14798884a8f6d8b4ccbffff6bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1620 zcmV-a2CMmrP)4ZN8DhB{O{o$u& z=6)_1l5zUx|Mk5l?U&5v-gD3S?)UD!@4S2OfTXNvXxIe8#)bf469^j{0)$NUI#D(V8*hnnby|U8;L|B7Xo)* zutES45yx>30EpJ&fTRI%Q$#W(&$zC8&2N&ciE;w$0q}Yw4oO}jd8VVIV=R$K+-sWQ zD#KHNcs$-^j5*SbV`I!RfM0j*+I9Tcv19pWe61!t1puJ^{rzA1u@D+#F59+!G?`5P z)2y%6fM*9u8WEZEC4lNPxm@nOSS0Lh8f2nb;B(9lrpYWQvh zl~(yFlD=nn05%z8y8QOrC?e%5T-UwtIL?%aJm+^%l5LH)jmP6%xm<3Ch-?GU1z;=5 zygYbo%>lTjs<+zO+OE}-h?NyUL4yr8P%o_s1f7#kb=i{x}YL92n}=~`_E1_pX<+x`H+fU4Hj`C=GjlIe8%qE}r- z0r&tvH5%B%U)FWqR4ulS<7^}OX0z$IF@^w+m#eSpJe^LT6_KfCNQj7#%(t|(d{;-4 z7=V^$;{v$oy6*LI^);!hsz*sKG)cr-T3Q;c!@j$jcn_hfXDZg$;-s)>eO+%}Kr&z4 zhUBZUSnP=!o8PG?R+;$sW@l&9m27IBU#{y;8DqXBS<@zmG3Ih45;+3kmxpBlB9>*n zF)}h@RclYO>Cb19CnqN-mnzxRwZLRD88@HLzfUq-A?Q4SA2XTEN6BRJYI}S831iId zB9o`5rlwx57Av36j}|`58v@CN`T6;i)$BYsL~4QKIM0)OR#hJ**-3Jm0h3)xTF{i4Z*SZfG*x^SelSvh4l>jyYc(K^Vah%6h z^oOS06rCwN@ork5&1BgOkS;rSHo*SBd~4zTt1(Ft*EGTZfK+18Pw?t&S zh=?)fZvbBvpE$X$I|bnI?%lihsA?a8ts-I@WB#x#%N-pZz0?S&hTj4W1q0CE-~Tay zj)!F=uL8IzB6~$dj4`*3F^99+?5!X;1$qElmrd&l_Vr=N*6()lyf#5x4;3okzqzh^ zKWHLh39w?3Q`Pn`h=d}5s(Kx}Jry_+2}u9|D@Fjxo%Qbe`hidc$mMb?MgV|K@pybk z&|Jcr0-lM^^73-v(;yT9T-Uwh^>wGJf!`kp?Jl6#Iv^n|grN!GwZlwuOVB*RybWrX z761tR-oTm?Kt!58391)sN`Q4W0swgJM%lF-n)rz|H3CFLCMG5Vod#j0!dmXw+qUgM zr$HzJ^z`(2K7A1pRSi^tKsQC#BG$#fLMmZHfUpUKjST_9CJ;6@1PGfz*!T|$uyzvn S5}&#N0000Qb&x; z14$ilt;}YUMN31B)b+}w+>B7mBh6!%{_V|t?|tvhoA<{z-#qFCe=l`4eKi08)P1~> zD0y}N4izPNZb{CXl@~=k!Y4>Y9#>W3DDqwv=N*oh?~i{61YyP?$%lG5o?$r`GZS)% z*z9*V z(qOk06HTl$_Ng9{rtUjQvz}mC%Dx3FdhBTRyG38Zr1LGU*2y8X8wbmIj)Q)Ng#CPi zXG4(=cf0g?&8KNel{R{yjqc|dID`h{~tYe;bww*rPFyaA%;{?rMi;8+b++oS}^LsLAwAQ z8lRIpJbDpACX+=41qD^WUG#05cXCF?((dBoV%`B%7%EAT)`@6h9h;95#Vn!SGP>y-7;6kK}|FvUv; za)C9jzHUi9qG6-~(Xe6)3p6R~5fNs{z|xodQQ9Sq@3VWR)5qG?2Ht1CMYA`4fxWLZ ze<6tJkZfJOZcaa+0fH?dtyMb)Q-8@ZwmQ$Q!>&LA4-|ap9HEhH?SqnQsx@ zxp2QwMW<<%D)0s5K+;fd0 z5}kgk`(qRL33Lv_5)*4XiADf$sdC*OCR=-0N*mAvYcBXY6c!dbj!Dzv54jCl%XP=3WNguZ z37!lCe)(Ygbz92h>Lj=}m%~qhrT$IJI1I6zp1Dz-Sx1=-^u??^(uslsPkAzd=R0!_ zKZ*TfcX!uob!#Waks*shqv1d_BkDnd6|zy(9Z(DB+SuFYob8P~4#D*a9z*AlJrSJeH@Y5Eysx(S5Tt#6KslFKuTQ}CbqR&SfPTqml9~3mwhLxg1LU?E(@2<= z5h5=;pZaw*wKD#i8TjUasEL;@OkxwEP7B@PUdL}{_e4aoLynvPQ~7@IbJ)w5H^}~V zhJ>{s5*GVb-L{(~SIxyBueVI;m@4p~xlHn?duTbr8_*8!9NBXixcg1?` Xvt5|=q?WJz8v;I_{>XMj^o{=kjoW&m diff --git a/aircox/static/aircox/images/info.png b/aircox/static/aircox/images/info.png deleted file mode 100644 index 4cfa220ea7b7ba0a12788237dd56a9c133114aaa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 679 zcmV;Y0$BZtP)lB=Yyi(h z^es)(ANodsHvxR#|D>v)MP$j$qclyEI)Bged=cp}bBl<+CQ0(W&cF5&7Tewxk)>&x zgYDqH?_c@8e^nk!(=;(nb08v1RqeX2d(jAhh*(wo0M3|s6h+Zf*>2l*OGIu(nyoWlUH zPBj3y+htT$W#)TkzOT7xo4J=2_S!mN0f1o`d6k2zekp#VU3SATauNBx)-F|_&3gM6 zn^bF}IF27xby2PzdjtF{RRR0086wP*k`^D$Q*KFfYD0 zO#w=C=T#1s09lsJies=n&+`wB?0KF~M7D_JS(eQX22fQYq9K515$T0tc)smJL<1rk zY>$UwcrGG6teeuXu00>U8NL5@ywTAfB(I#0`6T;WdcURk1n}PgyZ~BGR(v#wDLw!I N002ovPDHLkV1iKXAff;O diff --git a/aircox/static/aircox/images/list.png b/aircox/static/aircox/images/list.png deleted file mode 100755 index 60f103e13f54df408261532369e25cab9a15e360..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 391 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=EX7WqAsj$Z!;#Vf2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4|K+x>R+_u5U*n@GCKY!-U#apjkJO9|?UipXHXKc=!pSQfOy`k>&{CR(w zAHHX}&X8u7TltND$Ge6P(;rOasApfne1&nI^Q(r(3-|(noTSA-s)BDNb6>NSgX{vn zj$W$=*R2oy{=HAM6y!FjBCJll$N=@lA^s0cT2HTsJ{R!P0|pv{r>mdKI;Vst07^@i AzyJUM diff --git a/aircox/static/aircox/images/listen.png b/aircox/static/aircox/images/listen.png deleted file mode 100755 index 1ec7a40a160655c984fb39f5b567f5153df58f92..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1397 zcmV-*1&aEKP)C45Fz_3YWR%K(0DM*xhC zjrEDhk(Bv!IG}fvGG-SLRWDbCc-UjgG zCd;-2Ktzw4@)fD=^}*%=|#Rb*!ti-3uH%c(4EiKOO)?WZf80 zuh*|fX;tkuQBP8B18`k;)PxZLP}Myt*$*mpeA;oRdqT2j5g|O=j6V=zH6q8B(<`#5(DV&?v4Qv(XI3|wyw4SOioVL z0o*j?C6?!T7os#X=eGp_fT|kp1|kwnPfssK$3&Fh7SNDM05?6)`!bo41OOm^0Ep<~ z#-%nV5jjz*R8|4aeG919>$4_|000qPPRUM=0r>-P>eQ(!fFBKb0W&|eHqUk4coT$( zj1Pis?+7)vu0Lyh)~Qq~y@yS1n25;klS{JzPuEdeB-8kth& z0D>S0nfYT8xv^1MB5DZ$z$J6eZmT0}f$8b#MP@!GA}!y?QPp*0fU5R3zE=u`!e6Gn zb!;(o^5n@gMD$&&GObzw5&bKTOiWCysOm8!c6!&Ux3@R$2E)U{{fV96J0Ac51VQkJh@5B^Pd@!&=6#9$y8{3K z%+1YBipVcb!to1HM6?gMJphJb_*)iUtN>6|C8AH8JPh4WMAR4yo^Irwo}ZuJa2nl; ztZj(}K~QsD_oI|Gey{KQulMxyyu-{70su4rl$8&wdxDip<$|hyl5&6WDl?A*fQZ}} z7#KL6a=H;&-xQslo&8x=ziJj|=9w(!|M>b@UHJcKZf@=e0LQUrdQ{bGp67j^W!<@X zTO7E@UzfL~Tyz1O+6G|TfNgC9ux-G$wgK2SU|atI*l^4~ySnD{00000NkvXXu0mjf DY`}u{ diff --git a/aircox/static/aircox/images/loading.png b/aircox/static/aircox/images/loading.png deleted file mode 100755 index 7206a3ae398a464b7a40d9a0c4848a422f73df86..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2156 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 Ru>;L!@O1TaS?83{1OQ8@p2`3K diff --git a/aircox/static/aircox/images/on_air.png b/aircox/static/aircox/images/on_air.png deleted file mode 100755 index b437b6834df4633221406e3e05e1780d17ac6f2a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1955 zcmV;U2VD4xP)4ddNu9Wkqmov* z1wxc~W|B$9e&1n{=g4(qdw$-`L#mJDh3DP--E+^}x!-rsyFwBlWtg}L#Ene>;wBI` zHU)^AK-}0AAZ`M2V^e^*3B-*}0pcbQHxjKLV03iU&d$#6OeT{lV@xUtf|M~P1)y71 zQveo?F(r~El0|E6NmWY#7F^d|Xf;1+#bGFu$?O5pZ>{Yo`KX9=HWG*AbrG2ff?y^H zf|>K@&)TJ@``0BvI-TB@OeT*57!(m(?_jM2$s5L))A@XUyqNh7Sq_4r=(_IWeG(#)&1SbG5{cB};$q4evje~ZlKmpG zvyrhw_?1fK#PsxZd94QP7D6I2Qt#wR7DdDhf?%enr)PF-Z0t@AeF)%o`1kMd<2(SQ z)9KyT+CF2N3~i#24J|B z;)>*H*L7cAug!*gKsue?-O800d^v%c@Y8Ge(?+2S#h{Q&wKsS%b79}&4E zA~UY*US5vxIL=m*!^W6n0D9KoRq#CTC2lamnzF#*!-qems^3_-{79Bn^`!6n?(%2p zbb5C(nS3JLFq5@SwKk~gHDk!a zb0y&ZX8ko0*#Y2o5Cq@zeg9f5@#-psa=F}dB;R&jcM`a_M-+?2x`hPGuGO(&79YJdwV;3dU}RLG^Aaya3Nc?(YV&b3o2N986F1MHDK>!~EuuD~U8e=+0-U%zgvWQ$0k(rK;j<;5> zl<=%D0N~j$)d2v4AUNUs{@)s&03xu&1_lNmvev!`po8QuJ?>^M#z$*&k=_Cy(%D!tn4hU?b*(n4dXwZORs9pmagtXzU_ZpOtSRssGW@R7eMx+y^11meb~0C5wD8=C^e pO(1S;3J^DexUnff+yvsr{{RhE$4Q9x%)bBt002ovPDHLkV1nG6tNZ`} diff --git a/aircox/static/aircox/images/pause.png b/aircox/static/aircox/images/pause.png deleted file mode 100755 index ddd31af92d4ad524b834fa585180d9634605a9e8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 311 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=EX7WqAsj$Z!;#Vf2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4{Y(1ItYoed90SFW`Yzs63U0RO$mr2qBOw9v1&fP<8_giW^pCxBOTI z)``?_a%o_1|M7qG4=HAd|^_-m{mTOY5zTp?_qlQL=)_nA$Y!%C0AG!2S4ypK zY;0KL;L?ea3y?~smH<4@%+%5JOQlo^0GN69=FOW=j+#q1j8uTt)zu4@Wqk*L)6vwZ z)oMRKJUsk~QtB=MD5X9%N-j|tnE*sYQ&UsV6VZH^=3Nnyy}i8?0Dt!Do?Kg7n;jLO zD2z-1*L6QjL@N=^*MowHya512WI2xWu~G4f!bk*2r_&cj=3Y&QFZhnNqZ&CGp+P%jVgVYCcZS643t<+-`JIsngqyfjEKj70z<`Z|Ee4Q+c0 zKtvzvH-_uFk2;R?J=b*;08lIzTOzXO_h;L-jZc-v>2M~Kd6t=WSzG zxWAiRzI?goQVRJP^6r+<42v1h^S-86=mG$ENPu)Y{nYyU`l4q4CIB!q9UmW`*Xj?0 za;w!!n2<3NAR?n18qDnGa=C@zxt9lIGMT3>%X+rmZim|*5#0^SN-2HIJJjmq5ui{g z*Z^is1{(yP=Y1q7E2Z=p5C%clbra0|CBJ@NvpLrKhOVxA0DyP|I5;?%GZ|=5Se6yW zm6MZ`t{%{6G=e0l(+l6$#t8*r<|A#Kcm%L*J687(pp*&)sMqUVJ)mB%pDLw-YwPd} zF>_ZBfVKn>mj}FyFp~TGz5=vbt;2pcLru(lJ18fU$?(ol+slzmCa1LID&*mL-Xq#L z;UP*Xr7u@Kzli41&tPF;;i#X@Fle{ip#am<)1d%F6t4S3BBAdH`WFg=a=YDbYV~@c zj7NZCvDktZbmD^JIJZI)%w0X8R;x9L=v6-s=m}F-4oQPE)yn1aLGVmO zT|EE*DwWD_nE6E!3GJEr{XyBbZ9R|B1u)`lnhhQT=$ob*;%&!qex_IG0swfY!yeUY z^$#6YivS=Zs@ZIY*`@9Q%p9Kw5Yg@aR%TF2y;drf9{6>7c|gP%i@xox-QC?&zf1tm z1NVg~m&-=6%T$1hiJjqCce+&TF`%aaxm<2RyLk$))KjU{Lq`(%G(KW@e@#B0IiqC;$T!AI+G@BtWfJ^O*UEN~z<1wnWrZ003{9 z%(=O_*$&FhX7dvKI6_2!-Pzgc%OgN+xj?yGK49jTwdAEMMC73u5M*v5(oQCm{~UDg zjyF-p?hnMA3{|VuT_XBbFPmN-Kt%u2e_2z^&d$Cb1V+oUCMN&@EH5wr0zKjZ5k0c9 zvNEkb6M)A6Kq+P9{+%cmi>x8zmePr)M~ZAE2UnGYS-WXF!Lp?erN%P#mFv1wzs#7N~s$W z&EcynBDw_J4}hNM{bf{qqA)T6{CoNzN4yMuf{4hE1;GjK`XJj^To~za<~|GWIV z5&uswMn-}&0VYjg(l`@f(gY@rGXW+|VAA+69q!dtaJoK-00000NkvXXu0mjf?VP{e diff --git a/aircox/static/aircox/images/playback_next.png b/aircox/static/aircox/images/playback_next.png deleted file mode 100644 index 30f204b6e7894d012fbe1f1dd39027590e31979f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 848 zcmV-W1F!svP)t84nODQiJhB4>5?k7rKDRt-P=SrnA5jHOL3;@6}%d)105XS)k;x+&PM}r`k7DAjF z9UV2|=A+Vf2?0P4=lr~F+mnvt9Ed$R=N9MuOrz15%IEWk=xw&C5wVeet@U*&<+;JZ z!5xG;`?S_ql~Ut{LZO$C5AQANKmgzXaH6lTZ(0a(gjg@%YPDvRQX`aQ`7dJMg#chT z=lqgVYGQbJco(7OPR7`nZQGN!ZTA!MzmeoNY8!?@KAN2KegK$MN{tnZ#T>PXMEd{$ z^f1Q8gb>#Xg~I;W#W@GY*og1@H>H$$N)H{`$N=DA5Ck`b5NC&mhAcw97XZeklvfBu#Jhz-*;@0CiW z_r&}bV{D;Xt-5iui3AXF8vq{FYPA(4{K=}dM$Y+)Wm$`>tE){)4@m^PR;x9)wzl?_ z64qL8AmaT>rLvKrhxh`B_!$u&)M~XlvF10%*plaYq_g%Xkp&P@Gsd28Zf-taUtj-D ztmhhru}~_Nwut$^h$Nu3-Y^W~Zn<23N38RKb3W_3?ptC$l(qthxQ&QQp69(FUZg%_ z?8(5u!1Db3e2d&=8$tyT@nw>SdPIC>nkM<7J}QvCVoI4zAZ;>%w8;e0CKE`TOdxH# aUf>7Xeg`PGt^7j(0000oa&det>Z)cN5B7#na#XW&mNd)315r~^aAZ`+YxJd-!rsD;S-7fa`_s`Zo zbIz~p4B)!%;V=xxg%FQ*^7(xJplO;DLWn2zuJ0<)3S(nqsnylhApkhf7&BG#h=`VD zoiR;w7!mh1YPTl>uIrwZQcg0)j_Kqb$2nnH)-}dhceA!_6(|;qU11oG0)VTN@9F7D zXS3Oh0C1Ku7O6hlB7lf!+x8#;3t|11<)fQViZ(LddR5b+@Z{Lsxe zBC>!G;w58jnutE?4CHyyK|G8Q!mA?AEe-8lWiRh2c9BOD6@zT;#m2*B% zL^D##HPt*35$Aj{48th^2z2Ms@?9thg0&zBW&mIw0Di0HE0xMG&iSmA@(~gJRL!^L zHd^~OQ>oMx0F-t5@O}UN`uh4UB6_P*ZdywDLQ1)*n)f{KOArJzQp%^zihR$06E7?*gaGi`bzL5Y;kas^ zwqG5+%jfeI(=;a7ADp<3fdZfAr@CzY;N}sLaLmKQ6h*2(FAlaxAQE#l~a4C4$lpABLWS=Kb|mTlY1VfrV23c0TPgovI7F@SF0_a`%%Ojnrxi5nmy%H?u1 zBJwJ@nXdpi*pR$%ymuVuhHM}-(rf`>UDr=A^H`H-dR;{1Co@0TNIX%5706^VyGo_f zRRBk-2KWIW4`8ueF2C#O=vc~Tv*kEqEz24sqSOC~zdbuU`?glU(6i`y-Z(Q?i=Qu* zO80B+&#)MVagv$;5>G@^^~4i}G@$GHpr&afL_|s{Vdi^|x&vZKnY2 zsSNOmh-PA`{RdswO#l~}8I|0g@B7n*LZKKXPnZ|k(V(G}dgwULT12huA|l@alqz{k znx@@}DxRp0fzi>?6o8(}fQp$T53mu1LZPT>+8q&DO{G%PwrwxO$y0L+t*opZs5io95q)!M0%^*@8S+pi$=r~ZIfcI5o#I$uvpbTyxC&nP}4wr zd;3Qb2}*+=(=^jtpeYhH4P>*~vWP4Z{VwE`Qhi$^D?DNT1F!!)%zS>ktwLP`p65Li zk?%xA0QLhI+k9E!scT?L?FW*!ORW|q^9ux&0h zafx&%4z82{HuXxWlzQU2?&C1eMtT#Ah;m)`g;MIehh5x|Wt_^eWw t#6K-I%Ku%=?F3o|lBQ)KX<7!7<`?1uaWe$>=-L1P002ovPDHLkV1miJvkU+L diff --git a/aircox/static/aircox/images/reload.png b/aircox/static/aircox/images/reload.png deleted file mode 100644 index e21f314c740729e28e9601dcb84f0b0621b8b4d3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1256 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 diff --git a/aircox/static/aircox/images/settings.png b/aircox/static/aircox/images/settings.png deleted file mode 100644 index 23471f478021167ff2e4109de6f35041b2b0f4c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1153 zcmV-{1b+L8P)$#L zx7!OlJ3B|0UF*UIf*>dWsFK{U)*gt6c%D}vnLmpGkoP>VARixfkWkmrAACTCFykRtM6y5|v72Mnv8| zC-T@Bb2~1tPs~!iUSCe5BlQTV>fXP|62$k5>BZ%W)CR1zKZ(d;+WamYMqH`jJcVkt z+UV)&=`?`f$HvBf+}+)M55Q#F!rdUbJw87E<=)=jD+65G7l4`B}Ze(QSGm@=XLB`xJ z7K^uBbtR5~@B4Yr^9rgu0bnM9?~8i9z8x1(sZ^##g9L0G@3&n;!*1P)66b6&-?abUK|6lEka(aih_A?5fLY1cD$aL|4YUuEf!S z^_z%{0C-+RG6Ur9tLj%S_vJyFIcM=vP7c6J0LEni@lo#Gt7zt&dXvilNp)@JoD5iN z4@jPjY)Sxu`W^%^)suZP;H zsi{{LqeZNN7D0BjquO+NtJ25i$0z_tO~^aHSM zz&8B=Y#XqRW7|MCxUM?@U=I=P7Ln~lG!Nja*81B*q3~NT&qmk}LzzrwSF6=}6~JhR z<_3UM#bWUb)8~i!6-XwNBh38Te+-_8Xh1{`O-xMWOf^CsfY$mIBHDbfI%b~CX0tI9 zjnD>=%jJedB+*SRfT32a^@NE|XalI#YL6(T&~3el>@?8{Z2$lQ{Ye8DGSLZT0NHGI zl!!7x`iRKSCR(A|2aJu4ZE+mu1pvv7?EC6nZNWNSy=cR{1Y&!3r_o2&I~C;&YLkjv$U>h=005lyUqN16FLGasu|DsuoZ zK0f|55xv;HwllLRrHZv$?c>?m**}bp^nh^yV`F361_lOR2e7qMyNED=b0QK4@NkFr zIc7dlE|;$w8CWBX0ssKlb>ASOM}zid<{JP$@_oM?Sa=;US_aeUv@0S(2mcoleHx3! z^7(weX`;Ix7zJQ3`1AF8{bZ-f(KbeBft72i?nRU;gmLgh<^e1Qsc*Gf|Jvn+1)~4} z1e&=49C2OuXeN_+z(j97FeCGRpBe3u~V7w1-UH2IP zNA6Z5B7cfVw8NJ7rc&yIVzKz0k@y;(SZ1DyL?Z7kFE4LXN*xBU zyS+w4zIPnwc&~T+z0mVnAe+s`>h=1QTI-!6vIW33BKoORD*bpz1VAd4$|$7{5Yh1J z{vy%>@MSa_{Uo2yFZX1|fDJtjdY-qbTCMIEk>@&`?-xYmr0@IF8)k?s-3Mf|+0kaR zISJtL_BLj|thGK~EEezF@p+!NX>oBez499EAfn#^T+v#eFBA%amgIJne@n-t(?&2oJ$+q7s@>GCESr~2bV3_|h%ht1-%YJj>a6ekznbWTHUJ``a=Gk_ z$X);cM?@}0qtVl*8lhVTJCRDI9#cvkB%+4^D56_OY5<>?N~N!QdG>t~z-{93cw~5Z zc(l=I++3?W#``LO^&r%9z(&vyz_tO~^aHSMz&8B=Y#XpmKLFbXY|{_GwgKDx1D{wG Uma96zK>z>%07*qoM6N<$g6g%A#{d8T diff --git a/aircox/static/aircox/images/tags.png b/aircox/static/aircox/images/tags.png deleted file mode 100644 index b689effac3fc51914f4beae2fc90f738ef8bc73c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 669 zcmV;O0%HA%P)|tOr4GY9#_;7&c0!(p>;|>h=0skqj0+hG7^sMC3Nf6GxBU zs_NrjulIePoI*2@0tbL|s@fqrSLWOT4*0JyV>W!>ze$pRMIZ}4DU$6V2yWz+$Ssft zSJjWI`b<@SBwpWawOZGgCg6Y%thEnC&BRS#+cKN z;a7a$zg$=#51gb001^2nBF~e{VT`#JhT)~T1soghg9}dbNv&3ULGp7lOGGwYn=)0v z1@}B}CywJv8oXMq9u5YBTL5a)S*m(qt=&~e$D27$e}V&W!bx68z+YQyce~wg@|3s* zl5i1uA4SoQs;(cw%PH_q5jc>t1j!~ta#X2Q&Sb#1NnR`hPo04jp~iSTK5vZSG`!#M zzXQ-A*(?grB>(_vaNqZ5-~e7(YxnZPa|=w0S%Yp+7TuPT!$N$IV*bDpwV3bo?|H&M200000NkvXXu0mjf DrlK32 diff --git a/aircox/static/aircox/images/tiles_large.png b/aircox/static/aircox/images/tiles_large.png deleted file mode 100755 index aaca56b0d974c1505fde1d218262bcc2994a6d5b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 316 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=EX7WqAsj$Z!;#Vf2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4*C^b-}Ue9KJ?9g0Yj8SFaxHR#gAV+gBkIb w2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR43I{BcCHTMSl-$cQ~ku3%QJCb!`z=-Vq#%oW!s*!f7r0y^X1C9 zx0g)J>3GSf!^FO*sa1ftY4>NHbB`>{o=a|iFF)hwK{Mmsd;b5Marfrj*sxHpnNn5^ zvosiF8GJ<=_!`u>9M~O%Sr;%b=w!OUc!5PfA$w}`oZ|M^e4F^(7GL~ZZ>#o0Pykte zY37Iez^lh2r`4(|2~A{9yXW>qfvLA4ZSzmw!0kN6jH|5tFPm&%x0|P>;rcaG{X6*W_Qw9JFV5VGI>dNPGAFx98Q;u%(}>8#-)epG~{+`m5ZOv;SWlom#;e zA)2){O8TdA)69m02?E;~l(^y!xFxAMn14xEF=kZS6nt&ns{3n=rX*H!#^`5xW4c{=NXoZw!o`xbNk>IE*Iwx4a8 zrraYnh#+4Z;kXYRcG^3JvsDZ6yeor%8p+g<6?z3TsIMl-Zxy@x03xg+;5+?3t^wE&tpE ze&zHXht6D|!1!pf0W5|-FjY9;4?4?H$Kt~Hf+1rOLkWXPAOlPm9Dfyz`xy_-o&L3K TxxpM@Dr4|;^>bP0l+XkKRKPKQ diff --git a/aircox/static/aircox/images/twitter.png b/aircox/static/aircox/images/twitter.png deleted file mode 100755 index 9751963d9ec85dc9d0d3116c307f8bb0976a9df2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1568 zcmaJ>`B#z&6#WP_H94sTl;Na=WtNtXduA?QjZje{iItiQW@he|3!+S>eri(#;*6=; zCMuIyT3EScb4J4zbwo`Vu_@P(KnP{dFR}F&wJH>h^dzU2%S(@)+epC(+9sT2x#x@x z-fX?Vx7-<)-!1IjZd7k*bj;e?hp?xSGjMp1+%w(kaUN;*PDu0}wiGNx=*oZh($0U3 zFY6P|hn1cWjX_2gA1`bgX)n2{mYHuEOg<{@C6+T*Tr8RuYTCp{VT*ctRZ0St&i7cT zpY0Lw|KsbeFm9!`=yGNE*+<8q&O?9~ZWI%^F*q8&@d%Ole4nG^rP0bW;qVKR%$E(dPacmPKT3L%P=nrWz?0mvMpDFQ+z!@ z*^OHJD{ORqz0*b!FXI^dLSNn^pU2>HjXo*AA) z<~6tWHPosfjm_7^vlLU~7>l|?6^&zsXyyWev&flCjG{7nmHpnXaXQL^x6W~zh&-_K z-(RHW?v*1Ji>s=u54h5n=VOL8y>;;bzmz&LNvE^TQu{BCyGt5J`$thFo4?|2*~=#w zfzi>jJA2XVubkG-)Oo#opi1vWa8JW>QytA0%oU5pi*PtRWx7#5I~$Ojy8Qs)VW?HT zR!7Gw^zBuIlAhJuC~qq!-9IWW`U_0-dls0vv#jr06z>7ld4i`JUS3{aAaU)doP{wQ zQNhEz(M)1>wq?Sd;2cxI91yQG-*DG~J42^Bj|8Z$RwjniAKQCQNoPyXkr9$8sg zKnQ843e%P1^M1!OcH^I4C7VmbS`1j_DVvWNb40h8;YYU=K!aag^+4+G^R@M`=Zfo4 zC#S~L8a0fZdQ!6xS^@YH=sbR~s|60g?Mbh2GIDSy`zC9WxSk_gcq&U&9ajt(1R;ep zOOfDY5|8iO6=iG0Bp7OWt0o~bN=?sVPv!wa0Q&sTa3S=0BOhgZ7zekz(K~cX=HO{q z4v!~92mK0JLeTb)^wuX-_~h>3A3_Sv-Ec!f8(#>i!U<;zFsC7bTQ&rv88e=zvq z5$*LnRS-vn);L+Lnh9+`?-3ap*~I0}9Rz6atjop)SD=jPG^xUNipB^qcvT-RC`fi) zt%c^z$57ce!1v+q#RR&Yn;Ryrt<8{$=%m{1vhERMv8VCkVOHvebG-f{w|8m5<9qfk z)!&8<6O^$WwlQ-GI0Zar8C=w-7C?b(2NY?+p|*?t9kY5hQaKu=MqUkHfq|7+Y<17n zVwWaX{7rNbR%AFkH+S+hmwai>EO+FC>=0S>HSm(d%q2`+d_=7~S&MV~d Ezfc - -{% endblock %} - {% block submit_buttons_bottom %} {% if has_change_permission %}

diff --git a/aircox/templates/admin/base.html b/aircox/templates/admin/base.html new file mode 100644 index 0000000..564a27a --- /dev/null +++ b/aircox/templates/admin/base.html @@ -0,0 +1,112 @@ +{% load i18n static %} +{% get_current_language as LANGUAGE_CODE %}{% get_current_language_bidi as LANGUAGE_BIDI %} + + +{% block title %}{% endblock %} + + + + + +{% block extrastyle %}{% endblock %} + +{% if LANGUAGE_BIDI %}{% endif %} + +{% block extrahead %}{% endblock %} +{% block responsive %} + + + {% if LANGUAGE_BIDI %}{% endif %} +{% endblock %} +{% block blockbots %}{% endblock %} + +{% load i18n %} + + + + +
+ + {% if not is_popup %} + + + + + {% block breadcrumbs %} + + {% endblock %} + {% endif %} + + {% block messages %} + {% if messages %} +
    {% for message in messages %} + {{ message|capfirst }} + {% endfor %}
+ {% endif %} + {% endblock messages %} + + +
+ {% block pretitle %}{% endblock %} + {% block content_title %}{% if title %}

{{ title }}

{% endif %}{% endblock %} + {% block content %} + {% block object-tools %}{% endblock %} + {{ content }} + {% endblock %} + {% block sidebar %}{% endblock %} +
+
+ + + {% block footer %}{% endblock %} +
+ + + + diff --git a/aircox/templates/admin/base_site.html b/aircox/templates/admin/base_site.html new file mode 100644 index 0000000..76456fe --- /dev/null +++ b/aircox/templates/admin/base_site.html @@ -0,0 +1,10 @@ +{% extends "admin/base_site.html" %} +{% load static %} + +{% block branding %} + + + +{% endblock %} + + diff --git a/aircox/templates/admin/change_list.html b/aircox/templates/admin/change_list.html new file mode 100644 index 0000000..ebbbda2 --- /dev/null +++ b/aircox/templates/admin/change_list.html @@ -0,0 +1,89 @@ +{% extends "admin/base_site.html" %} +{% load i18n admin_urls static admin_list %} + +{% block extrastyle %} + {{ block.super }} + {% if cl.formset %} + + {% endif %} + {% if cl.formset or action_form %} + + {% endif %} + {{ media.css }} + {% if not actions_on_top and not actions_on_bottom %} + + {% endif %} +{% endblock %} + +{% block extrahead %} +{{ block.super }} +{{ media.js }} +{% endblock %} + +{% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} change-list{% endblock %} + +{% if not is_popup %} +{% block breadcrumbs %} + +{% endblock %} +{% endif %} + +{% block coltype %}flex{% endblock %} + +{% block content %} +
+ {% block object-tools %} +
    + {% block object-tools-items %} + {% change_list_object_tools %} + {% endblock %} +
+ {% endblock %} + {% if cl.formset and cl.formset.errors %} +

+ {% if cl.formset.total_error_count == 1 %}{% trans "Please correct the error below." %}{% else %}{% trans "Please correct the errors below." %}{% endif %} +

+ {{ cl.formset.non_form_errors }} + {% endif %} + +
+
+
{% csrf_token %} + {% if cl.formset %} +
{{ cl.formset.management_form }}
+ {% endif %} + + {% block result_list %} + {% if action_form and actions_on_top and cl.show_admin_actions %}{% admin_actions %}{% endif %} + {% result_list cl %} + {% if action_form and actions_on_bottom and cl.show_admin_actions %}{% admin_actions %}{% endif %} + {% endblock %} + {% block pagination %}{% pagination cl %}{% endblock %} +
+
+ +
+ {% block search %}{% search_form cl %}{% endblock %} +
+ {% block date_hierarchy %}{% if cl.date_hierarchy %}{% date_hierarchy cl %}{% endif %}{% endblock %} + + {% block filters %} + {% if cl.has_filters %} +
+

{% trans 'Filter' %}

+ {% for spec in cl.filter_specs %}{% admin_list_filter cl spec %}{% endfor %} +
+ {% endif %} + {% endblock %} +
+ + +
+
+{% endblock %} diff --git a/aircox/templates/aircox/article_detail.html b/aircox/templates/aircox/article_detail.html index 72a5630..b160431 100644 --- a/aircox/templates/aircox/article_detail.html +++ b/aircox/templates/aircox/article_detail.html @@ -1,4 +1,4 @@ -{% extends "aircox/page.html" %} +{% extends "aircox/page_detail.html" %} {% load i18n %} {% block side_nav %} diff --git a/aircox/templates/aircox/base.html b/aircox/templates/aircox/base.html index ea38221..a2d8d45 100644 --- a/aircox/templates/aircox/base.html +++ b/aircox/templates/aircox/base.html @@ -1,6 +1,7 @@ {% load static i18n thumbnail aircox %} {% comment %} Context: +- cover: image cover - site: current website {% endcomment %} @@ -70,6 +71,7 @@ Context: {% if show_side_nav %}
{% endblock %} -{% block main %} -{{ block.super }} - - +{% block main %}{{ block.super }} {% with True as hide_schedule %}
{% unique_id "timetable" as timetable_id %} diff --git a/aircox/templates/aircox/episode_detail.html b/aircox/templates/aircox/episode_detail.html index 3e7be66..2d31754 100644 --- a/aircox/templates/aircox/episode_detail.html +++ b/aircox/templates/aircox/episode_detail.html @@ -1,8 +1,7 @@ {% extends "aircox/program_base.html" %} {% load i18n %} -{% block header %} -{{ block.super }} +{% block header %}{{ block.super }}
{% for diffusion in object.diffusion_set.all %} @@ -28,8 +27,7 @@
{% endblock %} -{% block main %} -{{ block.super }} +{% block content %}{{ block.super }} {% if podcasts or tracks %}
diff --git a/aircox/templates/aircox/log_list.html b/aircox/templates/aircox/log_list.html index f1f2055..ee8403a 100644 --- a/aircox/templates/aircox/log_list.html +++ b/aircox/templates/aircox/log_list.html @@ -7,8 +7,6 @@ {% block main %} -{{ block.super }} -
{% if dates %}