Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Anthony
memopol
Commits
c24ee71c
Commit
c24ee71c
authored
May 28, 2016
by
Nicolas Joyard
Browse files
Enhance dossier detail
parent
fbfd3126
Changes
2
Hide whitespace changes
Inline
Side-by-side
memopol/views.py
View file @
c24ee71c
...
...
@@ -88,4 +88,4 @@ class DossierList(PaginationMixin, representatives_votes_views.DossierList):
'proposals__recommendation'
).
annotate
(
nb_recomm
=
Count
(
'proposals__recommendation'
)
).
order_by
(
'-reference'
)
).
order_by
(
'-nb_recomm'
,
'-reference'
)
templates/representatives_votes/dossier_detail.haml
View file @
c24ee71c
-
extends
"base.html"
-
load
i18n
-
load
representatives_votes_tags
-
block
content
%h2
=
dossier
.
name
%h3
=
dossier
.
title
%h1
{{ dossier.name }} {{ dossier.title }}
%p
<strong>
{{ dossier.reference }}
</strong>
%h3
Votes ({{dossier.proposals.count}})
-
for
proposal
in
dossier
.
proposals
.
all
%h4
{{ forloop.counter }}.
{{ proposal.recommendation.title }} -
{{ proposal.datetime }} -
{{ proposal.status }}
%p
{{ proposal.title }}
%small
{{ proposal.reference }}
{{ proposal.kind }}
{{ proposal.recommendation.description }}
%p
%h5
For : {{ proposal.total_for }}
%h5
Against : {{ proposal.total_against }}
%h5
Abstain : {{ proposal.total_abstain }}
%p
Participants : {{ proposal.representatives.count }}
%h2
-
trans
"Recommendations"
%table
.table
%tr
%th
-
trans
"Proposal"
%th
-
trans
"Title"
%th
-
trans
"Recommendation"
%th
-
trans
"Status"
%th
=
"for"
|
position_icon
%th
=
"against"
|
position_icon
%th
=
"abstain"
|
position_icon
-
for
proposal
in
dossier
.
proposals
.
all
%tr
%td
=
proposal
.
title
%br
%small
{{ proposal.reference }}
{{ proposal.kind }}
%td
=
proposal
.
recommendation
.
title
%td
=
proposal
.
recommendation
.
position
|
position_icon
%td
=
proposal
.
status
%td
=
proposal
.
total_for
%td
=
proposal
.
total_against
%td
=
proposal
.
total_abstain
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment