Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
website
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gruppo Ask
website
Commits
3727eb93
Commit
3727eb93
authored
Jul 12, 2013
by
Riccardo Padovani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New sidebar
parent
c44e08df
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
49 additions
and
0 deletions
+49
-0
forum/skins/light/media/style/style.css
forum/skins/light/media/style/style.css
+4
-0
forum/skins/light/templates/page.html
forum/skins/light/templates/page.html
+25
-0
forum/skins/light/templates/question_list/count.html
forum/skins/light/templates/question_list/count.html
+20
-0
No files found.
forum/skins/light/media/style/style.css
View file @
3727eb93
...
...
@@ -1791,6 +1791,10 @@ ul.form-horizontal-rows li input {
margin
:
0
2px
0
1px
;
}
#sidebar-upper
,
#sidebar-lower
{
background-color
:
#EFEFEF
;
}
a
.sidebar_button
{
background
:
none
repeat
scroll
0
0
#EEEEEE
;
color
:
black
;
...
...
forum/skins/light/templates/page.html
0 → 100644
View file @
3727eb93
{% extends base %}
{% load i18n markup node_tags general_sidebar_tags %}
{% block title %}{% spaceless %}{{ page.title }}{% endspaceless %}{% endblock %}
{% block content %}
<div
class=
"headNormal"
>
{{ page.title }}
</div>
<div
class=
"content"
>
{{ body }}
</div>
{% if page.extra.comments %}
{% comments page request.user %}
{% endif %}
{% endblock %}
{% ifequal page.extra.template "sidebar" %}
{% sidebar_upper %}
{% block sidebar %}
{% if page.extra.sidebar %}
{% if page.extra.sidebar_wrap %}
<div
class=
"boxC"
><div
class=
"body"
>
{% endif %}
{{ sidebar }}
{% if page.extra.sidebar_wrap %}
</div></div>
{% endif %}
{% endif %}
{% sidebar_lower %}
{% endblock %}
{% endifequal %}
\ No newline at end of file
forum/skins/light/templates/question_list/count.html
0 → 100644
View file @
3727eb93
{% spaceless %}
{% load i18n humanize extra_tags %}
{% declare %}
answer_count = questions.children_count('answer')
{% enddeclare %}
<div
class=
"boxC"
>
<div
class=
"questions-count"
>
{{ questions.paginator.count }}
<span
style=
"color:black;font-size:14px;margin-left:5px;font-weight:normal;"
>
{{ list_description }}
</span>
</div>
{% if answer_count %}
<div
class=
"questions-count"
>
{{ answer_count }}
<span
style=
"color:black;font-size:14px;margin-left:5px;font-weight:normal;"
>
{% trans "answers" %}
</span>
</div>
{% endif %}
</div>
{% endspaceless %}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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