Posted {{post.created}}
{% if post.created != post.updated %}
diff --git a/templates/forums/topic.html b/templates/forums/topic.html
index 802e701..b011ec9 100644
--- a/templates/forums/topic.html
+++ b/templates/forums/topic.html
@@ -1,21 +1,10 @@
-{% extends "forum_base.html" %}
+{% extends "base_with_nav.html" %}
{% load minecraft %}
{% load mptt_tags %}
-{%block title %}{{topic.title}}{%endblock%}
-{%block breadcrumb %}
-Home
-{%for f in topic.forum.get_ancestors%}
->
-{%endblock%}
+{% block sectiontitle %}Forums{% endblock %}
-{%block content %}
-
-
{% avatar topic.rootPost.user 32 %}
-
{{topic.title}}
-
Started by {{topic.rootPost.user}} {{ topic.created|timesince }} ago.
Last updated {{topic.updated|timesince}} ago.
+{% block localnav %}
{% if perms.forums %}
{% if perms.forums.delete_topic %}
@@ -32,6 +21,25 @@ Make Sticky
{% endif %}
{% endif %}
+{% endblock %}
+
+{%block title %}{{topic.title}}{%endblock%}
+
+{%block breadcrumb %}
+Home
+{%for f in topic.forum.get_ancestors%}
+>
{{f}}
+{%endfor%}
+>
{{topic.forum}}
+{%endblock%}
+
+{%block content %}
+
+
+
{% avatar topic.rootPost.user 32 %}
+
{{topic.title}}
+
Started by {{topic.rootPost.user}} {{ topic.created|timesince }} ago.
Last updated {{topic.updated|timesince}} ago.
+
{% include "forums/_post.html" with post=topic.rootPost %}
diff --git a/templates/local/list.html b/templates/local/list.html
index 61a3580..efb0800 100644
--- a/templates/local/list.html
+++ b/templates/local/list.html
@@ -9,7 +9,7 @@
{{group}}
{% for user in group.user_set.all %}
- - {% avatar user %}
{{user}}
+ - {% include '_profile_tile.html' with user=user %}
{% endfor %}
@@ -17,7 +17,7 @@
All Players
{% endblock %}
diff --git a/templates/local/profile.html b/templates/local/profile.html
index 234fc96..beae087 100644
--- a/templates/local/profile.html
+++ b/templates/local/profile.html
@@ -1,5 +1,14 @@
-{% extends "profile_base.html" %}
+{% extends "base_with_nav.html" %}
{% load minecraft %}
+
+{% block localnav %}
+{% if user == profile %}
+
+{% endif %}
+{% endblock%}
+
{%block title%}{{profile}}{%endblock%}
{% block sectiontitle %}{{profile}}{%endblock%}
@@ -7,9 +16,6 @@
{%block content %}
{% avatar profile 128 %}
-{% if user == profile %}
-
Edit profile
-{% endif %}
- Member Since: {{profile.date_joined|date:"SHORT_DATE_FORMAT"}}
- Last seen: {{profile.last_login|date:"SHORT_DATE_FORMAT"}}