File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
DigitalLearningSolutions.Web
Controllers/SuperAdmin/Centres Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -182,6 +182,8 @@ public List<string> GetCentreStatus()
182182 public IActionResult ManageCentre ( int centreId = 0 )
183183 {
184184 Centre centre = centresService . GetFullCentreDetailsById ( centreId ) ;
185+ centre . CandidateByteLimit = centre . CandidateByteLimit / 1048576 ;
186+ centre . ServerSpaceBytes = centre . ServerSpaceBytes / 1073741824 ;
185187 return View ( centre ) ;
186188 }
187189
Original file line number Diff line number Diff line change 179179 <b >Server space</b >
180180 </dt >
181181 <dd class =" nhsuk-summary-list__value" >
182- @Model.ServerSpaceBytes
182+ @Model.ServerSpaceBytes GB
183183 </dd >
184184 </div >
185185 <div class =" nhsuk-summary-list__row details-list-with-button__row" >
186186 <dt class =" nhsuk-summary-list__key" >
187187 <b >Per delegate upload space</b >
188188 </dt >
189189 <dd class =" nhsuk-summary-list__value" >
190- @Model.CandidateByteLimit
190+ @Model.CandidateByteLimit MB
191191 </dd >
192192 </div >
193193 <div class =" nhsuk-summary-list__row details-list-with-button__row" >
You can’t perform that action at this time.
0 commit comments