mirror of https://github.com/BOINC/boinc.git
Manager: show # of tasks completed/failed in project properties
This commit is contained in:
parent
1a9b1aa18f
commit
56320d3b74
|
@ -256,6 +256,9 @@ void CDlgItemProperties::renderInfos(PROJECT* project_in) {
|
||||||
if (project->ended) {
|
if (project->ended) {
|
||||||
addProperty(_("Ended"), _("yes"));
|
addProperty(_("Ended"), _("yes"));
|
||||||
}
|
}
|
||||||
|
addProperty(_("Tasks completed"), wxString::Format(wxT("%d"), project->njobs_success));
|
||||||
|
addProperty(_("Tasks failed"), wxString::Format(wxT("%d"), project->njobs_error));
|
||||||
|
|
||||||
addSection(_("Credit"));
|
addSection(_("Credit"));
|
||||||
addProperty(_("User"),
|
addProperty(_("User"),
|
||||||
wxString::Format(
|
wxString::Format(
|
||||||
|
|
Loading…
Reference in New Issue