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
La Quadrature du Net
Respect My Net
Commits
c477a4b6
Commit
c477a4b6
authored
Sep 21, 2011
by
Cynddl
Browse files
[fix] Issue w/ template tags displayed without parsing
parent
5ba2ebd6
Changes
2
Hide whitespace changes
Inline
Side-by-side
media/css/style.css
View file @
c477a4b6
...
...
@@ -367,9 +367,10 @@ h1 span {
text-shadow
:
0
1px
0
rgba
(
255
,
255
,
255
,
0.5
);
}
dl
#comments
{
background-color
:
#f5f5f5
;
padding
:
0.5em
;
div
.comment
{
background-color
:
#f9f9f9
;
padding
:
0.3em
;
margin
:
0.5em
0
;
}
...
...
templates/view.html
View file @
c477a4b6
...
...
@@ -92,10 +92,8 @@ $(document).ready(function() {
{% get_comment_list for v as cmt_list %}
{% for comment in cmt_list %}
<div
class=
"comment"
>
<p><a
href=
"{{ comment.user_url }}"
>
{{
comment.user_name }}
</a>
- {{ comment.submit_date
}}
</p>
{{ comment.comment }}
<p><a
href=
"{{ comment.user_url }}"
>
{{ comment.user_name }}
</a>
- {{ comment.submit_date }}
</p>
<p>
{{ comment.comment }}
</p>
</div>
{% endfor %}
<div
class=
"toggle button"
>
{% trans "Add comment" %}
</div>
...
...
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