[fixed leftovers. part 4/?.
getzdan@gmail.com**20070205134604] {
addfile ./app/templates/locale/he/recent_activity.html
hunk ./app/templates/locale/he/recent_activity.html 1
+{% load ghmarkup %}
+{% extends "base.html" %}
+
+{% block title %}
+פעולות אחרונות של {{ theuser|userlink:"/user/recentactivityi_he" }}
+{% endblock %}
+
+{% block navbar %}
+דף ראשי ::
+פעולות אחרונות
+{% endblock %}
+
+{% block content %}
+
פעולות אחרונות של {{ theuser|userlink:"/user/recentacitivity_he" }}
+
+
+{% for entry in log %}
+{% ifchanged entry.mtime.date %}
{{ entry.mtime.date }}{% endifchanged %}
+- {{ entry.id }} {{ entry.mtime|date:"H:i" }} {{entry.what|ghlink}}
+{% endfor %}
+
+
+{% endblock %}
addfile ./app/templates/locale/he/roster.html
hunk ./app/templates/locale/he/roster.html 1
+{% load ghmarkup %}
+{% extends "wikibase.html" %}
+
+{% block content %}
+ משתמשים
+
+
+{% if userlist %}
+
+{% for auser in userlist %}
+- {{ auser.user.username|userlink:"/wiki/wikipage_he" }}
+{% endfor %}
+
+{% else %}
+
מוזר, לא נמצאו משתמשים.
+{% endif %}
+
+{% endblock %}
addfile ./app/templates/recent_activity.html
hunk ./app/templates/recent_activity.html 1
+{% load ghmarkup %}
+{% extends "base.html" %}
+
+{% block title %}
+Recent Activity for {{ theuser|userlink:"/user/recentactivity" }}
+{% endblock %}
+
+{% block content %}
+Recent Activity for {{ theuser|userlink:"/user/recentacitivity" }}
+
+{% for entry in log %}
+{% ifchanged entry.mtime.date %}
{{ entry.mtime.date }}{% endifchanged %}
+- {{ entry.id }} {{ entry.mtime|date:"P" }} {{entry.what|ghlink}}
+{% endfor %}
+
+{% endblock %}
addfile ./app/templates/roster.html
hunk ./app/templates/roster.html 1
+{% load ghmarkup %}
+{% extends "wikibase.html" %}
+
+{% block content %}
+ Roster
+
+
+{% if userlist %}
+{% for auser in userlist %}
+- {{ auser.user.username|userlink:"/wiki/wikipage" }}
+{% endfor %}
+
+{% else %}
+Strange, no registered users in system.
+{% endif %}
+{% endblock %}
}