Last active
December 13, 2015 16:59
-
-
Save jjangdm/4944816 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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