Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
redeleitsystem
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
redl
redeleitsystem
Commits
7b26ed80
Commit
7b26ed80
authored
9 years ago
by
Hinrikus Wolf
Browse files
Options
Downloads
Patches
Plain Diff
add event-name to topic-show
parent
535aa66e
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
templates/admin_topic_show.html
+19
-6
19 additions, 6 deletions
templates/admin_topic_show.html
with
19 additions
and
6 deletions
templates/admin_topic_show.html
+
19
−
6
View file @
7b26ed80
...
@@ -7,9 +7,12 @@
...
@@ -7,9 +7,12 @@
<table
class=
"mdl-data-table mdl-js-table mdl-shadow--2dp mdl-cell mdl-cell--12-col"
>
<table
class=
"mdl-data-table mdl-js-table mdl-shadow--2dp mdl-cell mdl-cell--12-col"
>
<thead>
<thead>
<tr>
<tr>
<th
class=
"mdl-data-table__cell-non-numeric rede-large-text"
>
{{ topic.name }}
</th>
<th
class=
"mdl-data-table__cell-non-numeric rede-large-text"
style=
"text-align:center;"
colspan=
"5"
>
{{ topic.event.name }}
</th>
<th
class=
"mdl-data-table__cell-non-numeric rede-medium-text"
colspan=
2
>
{{ topic.mode }}
</th>
</tr>
<th
class=
"mdl-data-table__cell-non-numeric rede-medium-text"
><a
href=
"{{ url_for("
.
topic_edit
",
id=
topic.id)
}}"
><i
class=
"material-icons"
>
edit
</i></a></th>
<tr>
<th
class=
"mdl-data-table__cell-non-numeric rede-large-text"
style=
"text-align:center;"
colspan=
"3"
>
{{ topic.name }}
</th>
<th
class=
"mdl-data-table__cell-non-numeric rede-medium-text"
style=
"text-align:center;"
>
{{ topic.mode }}
</th>
<th
class=
"mdl-data-table__cell-non-numeric rede-medium-text"
style=
"text-align:center;"
><a
href=
"{{ url_for("
.
topic_edit
",
id=
topic.id)
}}"
><i
class=
"material-icons"
>
edit
</i></a></th>
</tr>
</tr>
<tr>
<tr>
<th
class=
"mdl-data-table__cell--non-numeric"
>
Speaker
</th>
<th
class=
"mdl-data-table__cell--non-numeric"
>
Speaker
</th>
...
@@ -60,8 +63,6 @@
...
@@ -60,8 +63,6 @@
</li>
</li>
{% endif %}
{% endif %}
<li><a
href=
"{{ url_for("
.
statement_undo
",
topic_id=
topic.id)
}}"
class=
"rede-href"
><i
class=
"material-icons"
role=
"presentation"
>
undo
</i>
Previous
</a></li>
<li><a
href=
"{{ url_for("
.
statement_undo
",
topic_id=
topic.id)
}}"
class=
"rede-href"
><i
class=
"material-icons"
role=
"presentation"
>
undo
</i>
Previous
</a></li>
<li><a
href=
"{{ url_for("
.
topic_show
",
id=
topic.get_next_index())
}}"
><i
class=
"material-icons"
>
arrow_forward
</i>
Next Topic
</a></li>
<li><a
href=
"{{ url_for("
.
topic_show
",
id=
topic.get_previous_index())
}}"
><i
class=
"material-icons"
>
arrow_backward
</i>
Previous Topic
</a></li>
<li>
<li>
<form
action=
"{{ url_for("
.
pause
",
id=
topic.event.id,
original=
topic.id)
}}"
method=
"POST"
>
<form
action=
"{{ url_for("
.
pause
",
id=
topic.event.id,
original=
topic.id)
}}"
method=
"POST"
>
<button
class=
"mdl-button"
>
<button
class=
"mdl-button"
>
...
@@ -98,7 +99,8 @@
...
@@ -98,7 +99,8 @@
</ul>
</ul>
</div>
</div>
</div>
</div>
<div
class=
"mdl-cell mdl-cell--3-col mdl-cell--3-col-tablet mdl-cell--4-col-phone mdl-card mdl-shadow--2dp"
>
<div
class=
"mdl-cell mdl-cell--3-col mdl-cell--3-col-tablet mdl-cell--4-col-phone mdl-grid mdl-grid--no-spacing"
>
<div
class=
"mdl-cell mdl-cell--12-col mdl-cell--8-col-tablet mdl-cell--4-col-phone mdl-card mdl-shadow--2dp"
>
<div
class=
"mdl-card__title"
>
<div
class=
"mdl-card__title"
>
<h4
class=
"mdl-card__title-text"
>
Topics
</h4>
<h4
class=
"mdl-card__title-text"
>
Topics
</h4>
</div>
</div>
...
@@ -121,6 +123,17 @@
...
@@ -121,6 +123,17 @@
<tr>
<tr>
{% endfor %}
{% endfor %}
</table>
</table>
<table
style=
"width:100%"
>
<tr>
<td>
<a
href=
"{{ url_for("
.
topic_show
",
id=
topic.get_previous_index())
}}"
><i
class=
"material-icons"
style=
"heigth: 16pt; width:16pt;"
>
arrow_backward
</i>
Previous
</a>
</td>
<td>
<a
href=
"{{ url_for("
.
topic_show
",
id=
topic.get_next_index())
}}"
>
Next
<i
class=
"material-icons"
style=
"height:16pt; width:16pt;"
>
arrow_forward
</i></a>
</td>
</tr>
</table>
</div>
</div>
</div>
{% if topic.event.paused %}
{% if topic.event.paused %}
<div
class=
"mdl-cell mdl-cell--12-col mdl-cell--8-col-tablet mdl-cell--4-col-phone mdl-card mdl-shadow--2dp"
>
<div
class=
"mdl-cell mdl-cell--12-col mdl-cell--8-col-tablet mdl-cell--4-col-phone mdl-card mdl-shadow--2dp"
>
...
...
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