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