Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
framadate
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor 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
Nounous
framadate
Commits
efda4e97
Commit
efda4e97
authored
7 years ago
by
Marjolaine Vé
Committed by
Thomas Citharel
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[Responsive] List of polls for admins with scrollbar
parent
b29bbb5c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
css/app/create_poll.css
+0
-6
0 additions, 6 deletions
css/app/create_poll.css
css/style.css
+6
-0
6 additions, 0 deletions
css/style.css
tpl/admin/polls.tpl
+51
-50
51 additions, 50 deletions
tpl/admin/polls.tpl
with
57 additions
and
56 deletions
css/app/create_poll.css
+
0
−
6
View file @
efda4e97
...
@@ -22,10 +22,4 @@
...
@@ -22,10 +22,4 @@
border-bottom
:
4px
dashed
;
border-bottom
:
4px
dashed
;
border-top
:
0
none
;
border-top
:
0
none
;
content
:
""
;
content
:
""
;
}
@media
(
max-width
:
767px
)
{
#optionnal
{
margin-top
:
15px
;
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
css/style.css
+
6
−
0
View file @
efda4e97
...
@@ -521,6 +521,12 @@ table.results > tbody > tr:hover > td .glyphicon {
...
@@ -521,6 +521,12 @@ table.results > tbody > tr:hover > td .glyphicon {
#poll_search
{
#poll_search
{
cursor
:
pointer
;
cursor
:
pointer
;
}
}
.table-of-polls
{
overflow-x
:
scroll
;
margin-bottom
:
0
;
border
:
0
;
box-shadow
:
none
;
}
/* Studs */
/* Studs */
.password_request
{
.password_request
{
...
...
This diff is collapsed.
Click to expand it.
tpl/admin/polls.tpl
+
51
−
50
View file @
efda4e97
...
@@ -64,59 +64,60 @@
...
@@ -64,59 +64,60 @@
<div
class=
"panel-heading"
>
<div
class=
"panel-heading"
>
{
if
$count
==
$total
}{
$count
}{
else
}{
$count
}
/
{
$total
}{/
if
}
{__('Admin', 'polls in the database at this time')}
{
if
$count
==
$total
}{
$count
}{
else
}{
$count
}
/
{
$total
}{/
if
}
{__('Admin', 'polls in the database at this time')}
</div>
</div>
<div
class=
"table-of-polls panel"
>
<table
class=
"table table-bordered table-polls"
>
<table
class=
"table table-bordered table-polls"
>
<tr
align=
"center"
>
<th
scope=
"col"
></th>
<th
scope=
"col"
>
{__('Admin', 'Title')}
</th>
<th
scope=
"col"
>
{__('Admin', 'Author')}
</th>
<th
scope=
"col"
>
{__('Admin', 'Email')}
</th>
<th
scope=
"col"
>
{__('Admin', 'Expiration date')}
</th>
<th
scope=
"col"
>
{__('Admin', 'Votes')}
</th>
<th
scope=
"col"
>
{__('Admin', 'Poll ID')}
</th>
<th
scope=
"col"
colspan=
"3"
>
{__('Admin', 'Actions')}
</th>
</tr>
{
foreach
$polls
as
$poll
}
<tr
align=
"center"
>
<tr
align=
"center"
>
<td
class=
"cell-format"
>
<th
scope=
"col"
></th>
{
if
$poll
->
format
===
'D'
}
<th
scope=
"col"
>
{__('Admin', 'Title')}
</th>
<span
class=
"glyphicon glyphicon-calendar"
aria-hidden=
"true"
<th
scope=
"col"
>
{__('Admin', 'Author')}
</th>
title=
"{__('Generic', 'Date')}"
></span>
<th
scope=
"col"
>
{__('Admin', 'Email')}
</th>
<span
class=
"sr-only"
>
{__('Generic', 'Date')}
</span>
<th
scope=
"col"
>
{__('Admin', 'Expiration date')}
</th>
<th
scope=
"col"
>
{__('Admin', 'Votes')}
</th>
<th
scope=
"col"
>
{__('Admin', 'Poll ID')}
</th>
<th
scope=
"col"
colspan=
"3"
>
{__('Admin', 'Actions')}
</th>
</tr>
{
foreach
$polls
as
$poll
}
<tr
align=
"center"
>
<td
class=
"cell-format"
>
{
if
$poll
->
format
===
'D'
}
<span
class=
"glyphicon glyphicon-calendar"
aria-hidden=
"true"
title=
"{__('Generic', 'Date')}"
></span>
<span
class=
"sr-only"
>
{__('Generic', 'Date')}
</span>
{
else
}
<span
class=
"glyphicon glyphicon-list-alt"
aria-hidden=
"true"
title=
"{__('Generic', 'Classic')}"
></span>
<span
class=
"sr-only"
>
{__('Generic', 'Classic')}
</span>
{/
if
}
</td>
<td>
{
$poll
->
title
|
html
}
</td>
<td>
{
$poll
->
admin_name
|
html
}
</td>
<td>
{
$poll
->
admin_mail
|
html
}
</td>
{
if
strtotime
(
$poll
->
end_date
)
>
time
()
}
<td>
{
date
(
'd/m/y'
,
strtotime
(
$poll
->
end_date
))
}
</td>
{
else
}
{
else
}
<span
class=
"glyphicon glyphicon-list-alt"
aria-hidden=
"true"
<td><span
class=
"text-danger"
>
{
strtotime
(
$poll
->
end_date
)|
date_format
:
'd/m/Y'
}
</span></td>
title=
"{__('Generic', 'Classic')}"
></span>
<span
class=
"sr-only"
>
{__('Generic', 'Classic')}
</span>
{/
if
}
{/
if
}
</td>
<td>
{
$poll
->
votes
|
html
}
</td>
<td>
{
$poll
->
title
|
html
}
</td>
<td>
{
$poll
->
id
|
html
}
</td>
<td>
{
$poll
->
admin_name
|
html
}
</td>
<td><a
href=
"
{
poll_url
id
=
$poll
->
id
}
"
class=
"btn btn-link"
<td>
{
$poll
->
admin_mail
|
html
}
</td>
title=
"{__('Admin', 'See the poll')}"
><span
class=
"glyphicon glyphicon-eye-open"
></span><span
{
if
strtotime
(
$poll
->
end_date
)
>
time
()
}
class=
"sr-only"
>
{__('Admin', 'See the poll')}
</span></a></td>
<td>
{
date
(
'd/m/y'
,
strtotime
(
$poll
->
end_date
))
}
</td>
<td><a
href=
"
{
poll_url
id
=
$poll
->
admin_id
admin
=
true
}
"
class=
"btn btn-link"
{
else
}
title=
"{__('Admin', 'Change the poll')}"
><span
<td><span
class=
"text-danger"
>
{
strtotime
(
$poll
->
end_date
)|
date_format
:
'd/m/Y'
}
</span></td>
class=
"glyphicon glyphicon-pencil"
></span><span
{/
if
}
class=
"sr-only"
>
{__('Admin', 'Change the poll')}
</span></a></td>
<td>
{
$poll
->
votes
|
html
}
</td>
<td>
<td>
{
$poll
->
id
|
html
}
</td>
<button
type=
"submit"
name=
"delete_poll"
value=
"
{
$poll
->
id
|
html
}
"
class=
"btn btn-link"
<td><a
href=
"
{
poll_url
id
=
$poll
->
id
}
"
class=
"btn btn-link"
title=
"{__('Admin', 'Deleted the poll')}"
><span
title=
"{__('Admin', 'See the poll')}"
><span
class=
"glyphicon glyphicon-trash text-danger"
></span><span
class=
"glyphicon glyphicon-eye-open"
></span><span
class=
"sr-only"
>
{__('Admin', 'Deleted the poll')}
</span>
class=
"sr-only"
>
{__('Admin', 'See the poll')}
</span></a></td>
</td>
<td><a
href=
"
{
poll_url
id
=
$poll
->
admin_id
admin
=
true
}
"
class=
"btn btn-link"
</tr>
title=
"{__('Admin', 'Change the poll')}"
><span
{/
foreach
}
class=
"glyphicon glyphicon-pencil"
></span><span
</table>
class=
"sr-only"
>
{__('Admin', 'Change the poll')}
</span></a></td>
</div>
<td>
<button
type=
"submit"
name=
"delete_poll"
value=
"
{
$poll
->
id
|
html
}
"
class=
"btn btn-link"
title=
"{__('Admin', 'Deleted the poll')}"
><span
class=
"glyphicon glyphicon-trash text-danger"
></span><span
class=
"sr-only"
>
{__('Admin', 'Deleted the poll')}
</span>
</td>
</tr>
{/
foreach
}
</table>
<div
class=
"panel-heading"
>
<div
class=
"panel-heading"
>
{__('Admin', 'Pages:')}
{__('Admin', 'Pages:')}
...
...
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