diff --git a/groups/templates/groups/base.html b/groups/templates/groups/base.html
index c6be3ac5..67e70ed3 100644
--- a/groups/templates/groups/base.html
+++ b/groups/templates/groups/base.html
@@ -30,7 +30,7 @@ scratch. This page gets rid of all links and provides the needed markup only.
-
+ {% block headother %}{% endblock %}
@@ -190,10 +190,9 @@ desired effect
-
+ {% block pagehead %}
-
+ {% endblock %}
+ {% block content %}
- {% block content %}{% endblock %}
-
+ {% endblock %}
@@ -313,7 +312,7 @@ desired effect
-
+ {% block endother %}{% endblock %}
diff --git a/groups/templates/groups/company.bak.html b/groups/templates/groups/company.bak.html
new file mode 100644
index 00000000..44a60959
--- /dev/null
+++ b/groups/templates/groups/company.bak.html
@@ -0,0 +1,74 @@
+{% extends "./base.html" %}
+
+{% block title %}公司列表{% endblock %}
+
+{% block pagehead %}
+
+ 公司列表
+ companys list
+
+
+ - 主页
+ - 公司列表
+
+{% endblock %}
+{% block content %}
+
+
+{% endblock %}
\ No newline at end of file
diff --git a/groups/templates/groups/company.html b/groups/templates/groups/company.html
index 44a60959..5b00fca2 100644
--- a/groups/templates/groups/company.html
+++ b/groups/templates/groups/company.html
@@ -1,74 +1,100 @@
-{% extends "./base.html" %}
-
-{% block title %}公司列表{% endblock %}
-
-{% block pagehead %}
-
- 公司列表
- companys list
-
-
- - 主页
- - 公司列表
-
-{% endblock %}
-{% block content %}
-
-
-{% endblock %}
\ No newline at end of file
+{% extends "./base.html" %}
+{% load static %}
+{% block headother%}
+
+
+
+{% endblock %}
+
+
+{% block title %}公司列表{% endblock %}
+
+{% block pagehead %}
+
+{% endblock %}
+{% block content %}
+
+
+
+
+
+
+
+
+
+
+
+ 公司名称 |
+ Browser |
+ Platform(s) |
+ 超管账号 |
+ 建立时间 |
+
+
+
+ {% for i in companys %}
+
+ {{i.partname}} |
+ Firefox 1.0 |
+ Win 98+ / OSX.2+ |
+ {{i.useradmin}} |
+ {{i.creattime}} |
+
+ {% endfor %}
+
+
+
+
+
+
+
+
+
+
+
+
+{% endblock %}
+
+
+{% block endother%}
+
+
+
+
+
+
+
+
+
+
+{% endblock %}
+
+