forked from rc/aircox
fix errors
This commit is contained in:
parent
4a7517c109
commit
ab093047ff
|
@ -169,7 +169,6 @@ ul.list {
|
|||
}
|
||||
|
||||
.date_list_item h3 {
|
||||
width: 100%;
|
||||
margin-top: 0em;
|
||||
}
|
||||
|
||||
|
@ -347,3 +346,12 @@ main .body ~ section:not(.comments) {
|
|||
}
|
||||
|
||||
|
||||
/** content: others **/
|
||||
.list_item.track .title {
|
||||
display: inline;
|
||||
font-style: italic;
|
||||
font-weight: normal;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@ is just a bit different.
|
|||
{% endif %}
|
||||
|
||||
<div class="flex_item">
|
||||
<h3>{{ item.title }}</h3>
|
||||
<h3 class="title">{{ item.title }}</h3>
|
||||
|
||||
{% if item.summary %}<div class="summary">{{ item.summary }}</div>{% endif %}
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ Options:
|
|||
{% endif %}
|
||||
{% endif %}
|
||||
<div class="flex_item">
|
||||
<h3>{{ item.title }}</h3>
|
||||
<h3 class="title">{{ item.title }}</h3>
|
||||
|
||||
{% if item.info %}
|
||||
<span class="info">{{ item.info|safe }}</span>
|
||||
|
|
|
@ -58,7 +58,7 @@ class TrackInline(GenericTabularInline):
|
|||
class SoundAdmin(NameableAdmin):
|
||||
fields = None
|
||||
list_display = ['id', 'name', 'duration', 'type', 'mtime',
|
||||
'public', 'good_quality']
|
||||
'public', 'good_quality', 'path']
|
||||
fieldsets = [
|
||||
(None, { 'fields': NameableAdmin.fields +
|
||||
['path', 'type', 'program', 'diffusion'] } ),
|
||||
|
|
Loading…
Reference in New Issue
Block a user