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
mahara
mahara
Commits
872f4db1
Commit
872f4db1
authored
Jan 12, 2007
by
Nigel McNie
Committed by
Nigel McNie
Jan 12, 2007
Browse files
Style fixes for evonne
parent
33df353a
Changes
3
Hide whitespace changes
Inline
Side-by-side
htdocs/account/activity/index.php
View file @
872f4db1
...
...
@@ -68,13 +68,13 @@ var activitylist = new TableRenderer(
'date',
function (r, d) {
if (r.read == 1) {
return TD(
null
,IMG({'src' : d.star, 'alt' : d.unread}));
return TD(
{'style': 'text-align: center;'}
,IMG({'src' : d.star, 'alt' : d.unread}));
}
return TD(null);
},
function (r) {
if (r.read == 0) {
return TD(
null
, INPUT({'type' : 'checkbox', 'class' : 'tocheck', 'name' : 'unread-' + r.id}));
return TD(
{'style': 'text-align: center;'}
, INPUT({'type' : 'checkbox', 'class' : 'tocheck', 'name' : 'unread-' + r.id}));
}
return TD(null);
}
...
...
htdocs/lang/en.utf8/activity.php
View file @
872f4db1
...
...
@@ -41,6 +41,7 @@ $string['type'] = 'Activity type';
$string
[
'attime'
]
=
'at'
;
$string
[
'prefsdescr'
]
=
'For options other than Activity log, notifications will still go into the Activity log, but will be automatically marked as read'
;
$string
[
'subject'
]
=
'Subject'
;
$string
[
'date'
]
=
'Date'
;
$string
[
'read'
]
=
'Read'
;
$string
[
'unread'
]
=
'Unread'
;
...
...
htdocs/theme/default/templates/account/activity/index.tpl
View file @
872f4db1
...
...
@@ -23,11 +23,11 @@
<table
id=
"activitylist"
>
<thead>
<tr>
<th>
{
str
section
=
'activity'
tag
=
'subject'
}
</th>
<th>
{
str
section
=
'activity'
tag
=
'type'
}
</th>
<th>
{
str
section
=
'activity'
tag
=
'date'
}
</th>
<th>
{
str
section
=
'activity'
tag
=
'read'
}
</th>
<th>
[
<a
href=
""
onClick=
"
{
$selectall
}
"
>
{
str
section
=
'activity'
tag
=
'selectall'
}
</a>
]
</th>
<th></th>
</tr>
</thead>
<tbody>
...
...
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