Skip to content

Instantly share code, notes, and snippets.

@wboykinm
Created October 11, 2012 16:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wboykinm/3873492 to your computer and use it in GitHub Desktop.
Save wboykinm/3873492 to your computer and use it in GitHub Desktop.
score panels
<ScorePanels>
<!-- For the sidebar -->
<ScorePanel id="panel1" type="district" position="1" title="Panel 1" cssclass="district_demographics wards" template="demographics.html">
<Score ref="score1"/>
</ScorePanel>
<!-- For the leaderboard -->
<ScorePanel id="panel_poptot_all" type="plan" position="1" title="Population" template="leaderboard_panel_all.html" is_ascending="false">
<Score ref="score1"/>
</ScorePanel>
<ScorePanel id="panel_compact_all" type="plan" position="2" title="Schwartzberg" template="leaderboard_panel_all.html" is_ascending="false">
<Score ref="district_schwartzberg"/>
</ScorePanel>
<ScorePanel id="panel_contiguous_all" type="plan" position="3" title="Contiguity" template="leaderboard_panel_all.html" is_ascending="false">
<Score ref="district_contiguous"/>
</ScorePanel>
<!-- For the evaluation page -->
<ScorePanel id="report_panel_population" type="district" position="1" title="Population" template="report_panel.html" cssclass="reports population" >
<Score ref="score1" />
</ScorePanel>
<ScorePanel id="report_panel_compactness" type="district" position="2" title="Compactness" template="report_panel.html" cssclass="reports compactness">
<Score ref="district_schwartzberg" />
</ScorePanel>
<ScorePanel id="report_panel_contiguous" type="district" position="3" title="Contiguity" template="report_panel.html" cssclass="reports compactness">
<Score ref="district_contiguous" />
</ScorePanel>
</ScorePanels>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment