diff --git a/app/controllers/account.coffee b/app/controllers/account.coffee
index a922a5a8..f1ddb699 100644
--- a/app/controllers/account.coffee
+++ b/app/controllers/account.coffee
@@ -29,6 +29,10 @@ Controller = Ember.Controller.extend
@set('allHooks', hooks)
+ accountName: (->
+ @get('model.name') || @get('model.login')
+ ).property('model.name', 'model.login')
+
hooks: (->
@reloadHooks() unless hooks = @get('allHooks')
@get('allHooks').filter (hook) -> hook.get('admin')
@@ -41,11 +45,11 @@ Controller = Ember.Controller.extend
showPrivateReposHint: (->
@config.show_repos_hint == 'private'
- ) .property()
+ ).property()
showPublicReposHint: (->
@config.show_repos_hint == 'public'
- ) .property()
+ ).property()
billingUrl: (->
id = if @get('model.type') == 'user' then 'user' else @get('model.login')
diff --git a/app/templates/account.hbs b/app/templates/account.hbs
index e535d52c..93a0d8f0 100644
--- a/app/templates/account.hbs
+++ b/app/templates/account.hbs
@@ -22,7 +22,7 @@
{{/if}}
{{#if user.isSyncing}}
diff --git a/app/templates/profile/repo.hbs b/app/templates/profile/repo.hbs
deleted file mode 100644
index 43d6cf6c..00000000
--- a/app/templates/profile/repo.hbs
+++ /dev/null
@@ -1,3 +0,0 @@
-Settings: {{slug}}
-
-{{outlet}}
diff --git a/app/templates/profile/show.hbs b/app/templates/profile/show.hbs
deleted file mode 100644
index f1f831bf..00000000
--- a/app/templates/profile/show.hbs
+++ /dev/null
@@ -1,4 +0,0 @@
-{{!--
- {{outlet}}
-
- --}}
\ No newline at end of file
diff --git a/app/templates/profile/tabs.hbs b/app/templates/profile/tabs.hbs
deleted file mode 100644
index f7e232be..00000000
--- a/app/templates/profile/tabs.hbs
+++ /dev/null
@@ -1,21 +0,0 @@
-
- -
-
- {{#link-to "account" account}}Repositories{{/link-to}}
-
-
- {{#if view.displayUser}}
- -
-
- {{#link-to "accounts.info"}}Profile{{/link-to}}
-
-
- {{/if}}
- {{#if config.billingEndpoint}}
- -
-
-
- {{/if}}
-
diff --git a/app/templates/profile/tabs/user.hbs b/app/templates/profile/tabs/user.hbs
deleted file mode 100644
index b10cf139..00000000
--- a/app/templates/profile/tabs/user.hbs
+++ /dev/null
@@ -1,29 +0,0 @@
-{{!--
-
-
-
-
-
-
- Email
-
- -
- {{user.email}}
-
-
-
-
-
- Token
-
- -
- {{user.token}}
-
-
-
- --}}