Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Commit

Permalink
Merge pull request #229 from Gobliip/feature/ISSUE-202
Browse files Browse the repository at this point in the history
Show namespace creation date
  • Loading branch information
mssola committed Jul 22, 2015
2 parents 28ed82b + 846d91f commit d392aed
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ tmp
vagrant
packaging
log/*
.DS_Store
1 change: 1 addition & 0 deletions app/views/namespaces/_namespace.html.slim
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
tr[id="namespace_#{namespace.id}"]
td= link_to namespace.clean_name, namespace
td= namespace.repositories.count
td= time_tag namespace.created_at
td
- if can_manage_namespace?(namespace) && !namespace.global
a[class="btn btn-default"
Expand Down
8 changes: 6 additions & 2 deletions app/views/namespaces/index.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,15 @@ h1
.panel-body
.table-responsive
table[class="table table-stripped table-hover"]
col.col-50
col.col-40
col.col-30
col.col-20
col.col-10
thead
tr
th Name
th Repositories
th Created
th Public
tbody
- @special_namespaces.each do |namespace|
Expand All @@ -51,13 +53,15 @@ h1
.panel-body
.table-responsive
table[class="table table-stripped table-hover"]
col.col-50
col.col-40
col.col-30
col.col-20
col.col-10
thead
tr
th Name
th Repositories
th Created At
th Public
tbody#accessible-namespaces
- @namespaces.each do |namespace|
Expand Down

0 comments on commit d392aed

Please sign in to comment.