From 1a66b8280bc778994bdb2b90beaeda1894065d54 Mon Sep 17 00:00:00 2001
From: Mia Lu
- For the size of the budget of each possible group, you will see a table and a corresponding graph like the one below ("Group budgets").
+ This information is also summarized in a table and a corresponding graph for reference during the discussion and bargaining phase (see below: "Group budgets").
')),
- datasets: [{
- label: "Group's value",
- data: prod_fct,
- borderWidth: 1,
- borderColor: "#056fb7",
- backgroundColor: "#5994c7"
- }]
- },
- options: {
- responsive: true,
- scales: {
- y: {
- beginAtZero: true
- },
- x: {
- title: {
- text: "Group members",
- display: true
- }
- }
- },
- maintainAspectRatio: false,
- plugins: {
- legend: {
- display: false
- },
- }
- }
-});
-
-// Payoff table
-payoffTableHeader = document.getElementById('payoff-table-header');
-payoffTableRow = document.getElementById('payoff-table-values');
-
-prod_fct.forEach(function (payoff, i) {
- let headerCell = document.createElement("th");
- headerCell.innerHTML = prod_fct_labels[i];
- headerCell.style.textAlign = 'center';
- payoffTableHeader.appendChild(headerCell)
-
- let valueCell = payoffTableRow.insertCell();
- valueCell.innerHTML = payoff;
- valueCell.style.textAlign = 'center';
-});
-
diff --git a/introduction/Proposal.html b/introduction/Proposal.html
index b253c0d..7c95202 100644
--- a/introduction/Proposal.html
+++ b/introduction/Proposal.html
@@ -39,7 +39,7 @@ Group budgets
{{ endif }}
In this round you are Player {{ player_name }}.
- Remember, payoffs are determined as follows: - -Group members | -
---|
Group's budget | -
You will now have exactly five minutes to discuss and bargain with the other players. After the five minutes end, accepted proposals become final. @@ -50,7 +24,4 @@ {{ next_button}} - - - {{ endblock }} \ No newline at end of file