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
Political Memory
memopol
Commits
7889f9f2
Commit
7889f9f2
authored
Apr 23, 2017
by
Nicolas Cn
Browse files
dossier/votes: add proposal dates
parent
fea83854
Pipeline
#991
failed with stage
in 9 minutes and 19 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/memopol/static/css/custom.css
View file @
7889f9f2
...
...
@@ -610,6 +610,13 @@ iframe {
min-width
:
25rem
;
}
.dossier-votes__proposal-date
{
display
:
block
;
text-align
:
center
;
font-weight
:
bold
;
-webkit-font-smoothing
:
antialiased
;
}
.dossier-votes__cell-vote
{
text-align
:
center
;
}
src/memopol/templates/representatives_votes/dossier_detail_votes.html
View file @
7889f9f2
...
...
@@ -25,9 +25,17 @@
<table
class=
"table table-responsive table-striped"
>
<thead>
<tr>
<td
class=
"dossier-votes__col-representatives"
>
{% trans "Representative" %}
</td>
<td
class=
"dossier-votes__col-representatives"
></td>
{% for proposal in proposals %}
<td
class=
"dossier-votes__col-proposal"
>
{{ proposal.title }}
</td>
<td
class=
"dossier-votes__col-proposal"
>
<time
class=
"dossier-votes__proposal-date"
}}'"
datetime=
"{{ proposal.datetime|date:'Y-m-d' }}"
>
{{ proposal.datetime|date:'d F Y' }}
</time>
{{ proposal.title }}
</td>
{% endfor %}
</tr>
</thead>
...
...
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