X-Git-Url: https://code.wpia.club/?p=gigi.git;a=blobdiff_plain;f=src%2Fclub%2Fwpia%2Fgigi%2Fpages%2Faccount%2FMyDetailsForm.java;fp=src%2Fclub%2Fwpia%2Fgigi%2Fpages%2Faccount%2FMyDetailsForm.java;h=e4834a150016d4a309af154efd28ee6a08a575ac;hp=4af7c94aa01ba7ee13d4088d9f6d89a202cdeb4c;hb=08c941629aea14473e5c42ab6f5d590be4af4bf8;hpb=c2da35eb9f4b6d3a3c055de1229afe0c07dc47da diff --git a/src/club/wpia/gigi/pages/account/MyDetailsForm.java b/src/club/wpia/gigi/pages/account/MyDetailsForm.java index 4af7c94a..e4834a15 100644 --- a/src/club/wpia/gigi/pages/account/MyDetailsForm.java +++ b/src/club/wpia/gigi/pages/account/MyDetailsForm.java @@ -22,7 +22,7 @@ import club.wpia.gigi.output.template.Template; public class MyDetailsForm extends Form { - private static final Template assured = new Template(MyDetails.class.getResource("MyDetailsFormAssured.templ")); + private static final Template verified = new Template(MyDetails.class.getResource("MyDetailsFormVerified.templ")); private static final Template templ = new Template(MyDetailsForm.class.getResource("MyDetailsForm.templ")); @@ -140,7 +140,7 @@ public class MyDetailsForm extends Form { } vars.put("name", t); vars.put("id", t.getId()); - vars.put("npoints", Integer.toString(t.getAssurancePoints())); + vars.put("npoints", Integer.toString(t.getVerificationPoints())); } }); @@ -148,12 +148,12 @@ public class MyDetailsForm extends Form { names.output(out, l, vars); vars.put("residenceCountry", cs); - if (target.getReceivedAssurances().length == 0) { + if (target.getReceivedVerifications().length == 0) { vars.put("DoB", ds); templ.output(out, l, vars); } else { vars.put("DoB", target.getDoB()); - assured.output(out, l, vars); + verified.output(out, l, vars); } final Set gr = target.getGroups();