No build definitions found (or visible) for the current project.
18 |Select one or more builds to enable notifications for.
25 | 26 |28 | Select all 29 | | 30 | Deselect all 31 |
32 |16 | You don't have any TFS projects/servers configured to monitor builds. Get started by adding a TFS connection 17 | below. 18 |
19 |No projects found (or visible) for the current connection.
18 |Select one or more Team Projects to set up build notifications for.
27 | 28 | 55 | } -------------------------------------------------------------------------------- /Tfs.BuildNotifications/Tfs.BuildNotifications.Web/Views/Configure.cshtml: -------------------------------------------------------------------------------- 1 | @inherits Nancy.ViewEngines.Razor.NancyRazorViewBase11 | Oops, an error seems to have occurred. Sorry about that. 12 |
13 | 14 | @if (Model != null) 15 | { 16 |Error detail:
17 |@Model.ToString()
18 | } 19 | 20 |Please try again or go back.
-------------------------------------------------------------------------------- /Tfs.BuildNotifications/Tfs.BuildNotifications.Web/Views/Index.cshtml: -------------------------------------------------------------------------------- 1 | @inherits Nancy.ViewEngines.Razor.NancyRazorViewBase23 | You don't have any TFS projects/servers configured to monitor builds. Get started by 24 | adding a TFS connection 25 |
26 |There are no builds currently running.
45 |69 | An error occurred whilst trying to connect to this TFS instance. Error detail: 70 | '@dashboardConnection.Connection.LastConnectionError' 71 |
72 | 73 |Click here to edit connection details.
74 | 75 |95 | You don't have any TFS projects configured to monitor builds for this connection. 96 | Click here to add a project. 97 |
98 |@dashboardProject.Project.Name (monitoring @dashboardProject.BuildDefinitions.Count build @("definition".Pluralize(dashboardProject.BuildDefinitions.Count)))
104 | 105 |115 | You are not monitoring any builds for this project. 116 | 117 | Click here to configure build notifications 118 | . 119 |
120 |
133 |
134 | @buildDefinition.ShortName
135 |
No builds available for this definition.
145 | } 146 | else 147 | { 148 | if (buildDefinition.IsRunning) 149 | { 150 |Requested by: @buildDefinition.LastRequestedBy
151 |Started at: @buildDefinition.LastStarted
152 | } 153 | else 154 | { 155 |Last requested by: @buildDefinition.LastRequestedBy
156 |Last completed: @buildDefinition.LastFinished
157 | } 158 | 159 |11 | Sorry, we couldn't find the the page you were looking for. Please try again or 12 | go back. 13 |
-------------------------------------------------------------------------------- /Tfs.BuildNotifications/Tfs.BuildNotifications.Web/Views/Shared/_AddEditConnection.cshtml: -------------------------------------------------------------------------------- 1 | @inherits Nancy.ViewEngines.Razor.NancyRazorViewBase@error
12 | } 13 |
8 |
9 | @Model.BuildDefinition.ShortName
10 |
No builds available for this definition.
20 | } 21 | else 22 | { 23 | if (Model.BuildDefinition.IsRunning) 24 | { 25 |Requested by: @Model.BuildDefinition.LastRequestedBy
26 |Started at: @Model.BuildDefinition.LastStarted
27 | } 28 | else 29 | { 30 |Last requested by: @Model.BuildDefinition.LastRequestedBy
31 |Last completed: @Model.BuildDefinition.LastFinished
32 | } 33 | 34 |