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
4f9f6c02
Commit
4f9f6c02
authored
Jul 15, 2012
by
Giuseppe Terrasi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
parent
9fdc05c7
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
16 deletions
+14
-16
forum/skins/light/templates/tags.html
forum/skins/light/templates/tags.html
+1
-3
forum/skins/light/templates/users/online_users.html
forum/skins/light/templates/users/online_users.html
+2
-2
forum/skins/light/templates/users/subscriptions.html
forum/skins/light/templates/users/subscriptions.html
+2
-2
forum/skins/light/templates/users/users.html
forum/skins/light/templates/users/users.html
+2
-2
forum/templatetags/extra_tags.py
forum/templatetags/extra_tags.py
+7
-7
No files found.
forum/skins/light/templates/tags.html
View file @
4f9f6c02
...
...
@@ -32,9 +32,7 @@
<div
id=
"searchtags"
>
<p>
{% if stag %}
{% blocktrans with query_tags=stag %}
All tags matching query '
<span
class=
"darkred"
><strong>
{{ query_tags }}
</strong></span>
':
{% blocktrans %}
{% trans "All tags matching query" %} '
<span
class=
"darkred"
><strong>
{{ stag }}
</strong></span>
':
{% endif %}
{% if not tags.paginator.count %}
<span>
{% trans "Nothing found" %}
</span>
...
...
forum/skins/light/templates/users/online_users.html
View file @
4f9f6c02
...
...
@@ -26,11 +26,11 @@
<div
id=
"main-body"
style=
"width:100%"
>
<p>
{% if suser %}
{% blocktrans %}users matching query '{{suser}}'
:{% endblocktrans %}
{% blocktrans %}users matching query {{suser}}
:{% endblocktrans %}
{% endif %}
{% if not users.paginator.count %}
<span>
{% trans "Nothing found" %}
</span>
<span>
{% trans "Nothing found
.
" %}
</span>
{% endif %}
</p>
<div
class=
"userList"
>
...
...
forum/skins/light/templates/users/subscriptions.html
View file @
4f9f6c02
...
...
@@ -32,8 +32,8 @@
<br/>
<div
id=
"navBar"
><div
class=
"tabsA"
>
<a
href=
'{{ view_user.get_user_subscriptions_url }}?tab=settings'
id=
"subscriptions_settings_button"
{%
if
not
manage_open
%}
class=
"on"
{%
endif
%}
>
{% trans "Settings" %}
</a>
<a
href=
'{{ view_user.get_user_subscriptions_url }}?tab=manage'
id=
"subscriptions_management_button"
{%
if
manage_open
%}
class=
"on"
{%
endif
%}
>
{% trans "Manage" %}
</a>
<a
href=
'{{ view_user.get_user_subscriptions_url }}?tab=settings'
id=
"subscriptions_settings_button"
{%
if
not
manage_open
%}
class=
"on"
{%
endif
%}
>
Settings
</a>
<a
href=
'{{ view_user.get_user_subscriptions_url }}?tab=manage'
id=
"subscriptions_management_button"
{%
if
manage_open
%}
class=
"on"
{%
endif
%}
>
Manage
</a>
</div></div>
<br/>
...
...
forum/skins/light/templates/users/users.html
View file @
4f9f6c02
...
...
@@ -26,11 +26,11 @@
<div
id=
"main-body"
style=
"width:100%"
>
<p>
{% if suser %}
{% blocktrans %}users matching query '{{suser}}'
:{% endblocktrans %}
{% blocktrans %}users matching query {{suser}}
:{% endblocktrans %}
{% endif %}
{% if not users.paginator.count %}
<span>
{% trans "Nothing found" %}
</span>
<span>
{% trans "Nothing found
.
" %}
</span>
{% endif %}
</p>
<div
class=
"userList"
>
...
...
forum/templatetags/extra_tags.py
View file @
4f9f6c02
...
...
@@ -158,20 +158,20 @@ def diff_date(date, limen=2):
minutes
=
int
(
diff
.
seconds
/
60
)
if
date
.
year
!=
now
.
year
:
return
dateformat
.
format
(
date
,
_
(
"d M 'y, H:i"
)
)
return
dateformat
.
format
(
date
,
'd M
\
'
y, H:i'
)
elif
days
>
2
:
return
dateformat
.
format
(
date
,
_
(
"d M, H:i"
)
)
return
dateformat
.
format
(
date
,
'd M, H:i'
)
elif
days
==
2
:
return
_
(
"2 days ago"
)
return
_
(
'2 days ago'
)
elif
days
==
1
:
return
_
(
"yesterday"
)
return
_
(
'yesterday'
)
elif
minutes
>=
60
:
return
ungettext
(
"%(hr)d hour ago"
,
"%(hr)d hours ago"
,
hours
)
%
{
'hr'
:
hours
}
return
ungettext
(
'%(hr)d '
+
_
(
"hour ago"
),
'%(hr)d '
+
_
(
"hours ago"
)
,
hours
)
%
{
'hr'
:
hours
}
elif
diff
.
seconds
>=
60
:
return
ungettext
(
"%(min)d min ago"
,
"%(min)d mins ago"
,
minutes
)
%
{
'min'
:
minutes
}
return
ungettext
(
'%(min)d '
+
_
(
"min ago"
),
'%(min)d '
+
_
(
"mins ago"
)
,
minutes
)
%
{
'min'
:
minutes
}
else
:
return
ungettext
(
"%(sec)d sec ago"
,
"%(sec)d secs ago"
,
diff
.
seconds
)
%
{
'sec'
:
diff
.
seconds
}
return
ungettext
(
'%(sec)d '
+
_
(
"sec ago"
),
'%(sec)d '
+
_
(
"secs ago"
)
,
diff
.
seconds
)
%
{
'sec'
:
diff
.
seconds
}
@
register
.
simple_tag
def
media
(
url
):
...
...
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