1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-16 15:19:06 +00:00

[font icons] add icons for bottom-bar & public group, using font-awesome

This commit is contained in:
llj
2013-04-06 17:18:20 +08:00
parent 6b5e0e0c2d
commit 2ac3d80906
10 changed files with 459 additions and 19 deletions

View File

@@ -455,6 +455,12 @@ def group_info(request, group):
request.user.username)
cmt.tp = cmt.props.desc.split(' ')[0]
if PublicGroup.objects.filter(group_id=group.id):
group.is_pub = True
else:
group.is_pub = False
return render_to_response("group/group_info.html", {
"members": members,
"repos": repos,