Skip to content

Instantly share code, notes, and snippets.

@jjangdm
Last active December 13, 2015 16:59
Show Gist options
  • Save jjangdm/4944816 to your computer and use it in GitHub Desktop.
Save jjangdm/4944816 to your computer and use it in GitHub Desktop.
<table id="contents" align="center" border="1px" cellspacing="0">
<tr bgcolor="#efffff">
<td align="center" width="15%">항목</td>
{% for p in month_list %}
<td width="5%" align="center">{{ p }}월</td>
{% endfor %}
<td width="6%" align="center">합계</td>
<td width="6%" align="center">예산</td>
<td width="6%" align="center">항목예산대비</td>
<td width="6%" align="center">예산총액대비</td>
</tr>
{% for item in category_list %}
<tr>
<td>{{ item.name }}</td>
{% for p in income_list %}
<td>{{ item }}</td>
{% endfor %}
<td>{{ sum }}</td>
<td>{{ rate }}</td>
</tr>
{% endfor %}
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment