]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/pages/wot/MyPoints.java
ADD: Assurances made display
[gigi.git] / src / org / cacert / gigi / pages / wot / MyPoints.java
index fc481437a9148cf0f743637dfd9d76673265cf8c..cd8b732e454b3cd4d5209c236fcd3afc7e3c5abc 100644 (file)
@@ -8,6 +8,7 @@ import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
 
 import org.cacert.gigi.GigiApiException;
+import org.cacert.gigi.User;
 import org.cacert.gigi.output.AssurancesDisplay;
 import org.cacert.gigi.pages.Page;
 
@@ -15,7 +16,9 @@ public class MyPoints extends Page {
 
     public static final String PATH = "/wot/mypoints";
 
-    private AssurancesDisplay display = new AssurancesDisplay("asArr");
+    private AssurancesDisplay myDisplay = new AssurancesDisplay("asArr");
+
+    private AssurancesDisplay toOtherDisplay = new AssurancesDisplay("otherAsArr");
 
     public MyPoints(String title) {
         super(title);
@@ -24,9 +27,12 @@ public class MyPoints extends Page {
     @Override
     public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
         HashMap<String, Object> vars = new HashMap<String, Object>();
-        vars.put("pointlist", display);
+        vars.put("pointlist", myDisplay);
+        vars.put("madelist", toOtherDisplay);
         try {
-            vars.put("asArr", getUser(req).getReceivedAssurances());
+            User user = getUser(req);
+            vars.put("asArr", user.getReceivedAssurances());
+            vars.put("otherAsArr", user.getMadeAssurances());
         } catch (SQLException e) {
             new GigiApiException(e).format(resp.getWriter(), getLanguage(req));
             return;