Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
steering
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AURA
steering
Commits
41eca6ea
Commit
41eca6ea
authored
14 years ago
by
Johannes Raggam
Browse files
Options
Downloads
Patches
Plain Diff
aligning show_list with day_schedule
parent
61ce3547
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
templates/program/day_schedule.html
+1
-2
1 addition, 2 deletions
templates/program/day_schedule.html
templates/program/show_list.html
+23
-25
23 additions, 25 deletions
templates/program/show_list.html
with
24 additions
and
27 deletions
templates/program/day_schedule.html
+
1
−
2
View file @
41eca6ea
...
...
@@ -3,7 +3,6 @@
<title>
Day schedule: {{ day|date:"l, d.m.Y" }}
</title>
<link
href=
"/site_media/styles/base.css"
media=
"screen"
rel=
"stylesheet"
type=
"text/css"
/>
</head>
<body>
<div
id=
"calendar"
></div>
...
...
@@ -40,7 +39,7 @@
<span
class=
"mf-{{ musicfocus.abbrev }}"
>
{{ musicfocus.abbrev }}
</span>
{% endfor %}
</div>
<div
class=
"show"
>
<div
class=
"show
-detail
"
>
<h3
class=
"show-title"
><a
href=
"{% url timeslot-detail timeslot.id %}"
>
{{ timeslot.show.name }}
</a></h3>
{% if timeslot.note %}
<p
class=
"note-title"
><strong>
Heute:
</strong>
{{ timeslot.note.title }}
</p>
...
...
This diff is collapsed.
Click to expand it.
templates/program/show_list.html
+
23
−
25
View file @
41eca6ea
...
...
@@ -19,39 +19,37 @@
</div>
<div
id=
"content-main"
class=
"show-list"
>
{% for show in show_list %}
<div
class=
"show"
>
<div
class=
"abbrevs"
>
{% for topic in show.showtopic.all %}
<span
class=
"topic-abbrev"
>
{{ topic.abbrev }}
</span>
{% endfor %}
{% for information in show.showinformation.all %}
<span
class=
"information-abbrev"
>
{{ information.abbrev }}
</span>
{% endfor %}
{% for focus in show.musicfocus.all %}
<span
class=
"focus-abbrev"
>
{{ focus.abbrev }}
</span>
{% endfor %}
<span
class=
"broadcastformat-abbrev"
>
{{ show.broadcastformat.abbrev }}
</span>
<h1>
Sendungen
</h1>
<div
id=
"shows"
>
{% for show in show_list %}
<div
class=
"show bf-{{ show.broadcastformat.slug }}"
>
<div
class=
"show-abbrevs"
>
{% for showinformation in show.showinformation.all %}
<span
class=
"si-{{ showinformation.abbrev }}"
>
{{ showinformation.abbrev }}
</span>
{% endfor %}
{% for showtopic in show.showtopic.all %}
<span
class=
"st-{{ showtopic.abbrev }}"
>
{{ showtopic.abbrev }}
</span>
{% endfor %}
{% for musicfocus in show.musicfocus.all %}
<span
class=
"mf-{{ musicfocus.abbrev }}"
>
{{ musicfocus.abbrev }}
</span>
{% endfor %}
</div>
<div
class=
"details"
>
<div
class=
"name"
><a
href=
"{% url show-detail show.slug %}"
>
{{ show.name }}
</a></div>
<div
class=
"programslots"
>
<div
class=
"show-detail"
>
<h3
class=
"show-title"
><a
href=
"{% url show-detail show.slug %}"
>
{{ show.name }}
</a></h3>
<div
class=
"show-programslots"
>
{% for slot in show.programslots.all %}
<
div
class=
"programslot"
>
{{ slot }}
</
div
>
<
p
class=
"
show-
programslot"
>
{{ slot }}
</
p
>
{% endfor %}
</div>
{% if show.short_description != 'FIXME' %}
<
div
class=
"sho
rt
-description"
>
{{ show.short_description }}
</
div
>
<
p
class=
"sho
w
-description"
>
{{ show.short_description }}
</
p
>
{% endif %}
</div>
</div>
{% endfor %}
{% endfor %}
</div>
</div>
</body>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment