wippeldi
This commit is contained in:
parent
a80e8cf7fd
commit
e77e0e3343
@ -102,17 +102,25 @@ td.year {
|
|||||||
background-color: white;
|
background-color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
td.year-finished {
|
td.year-complete {
|
||||||
background-color: green;
|
background-color: green;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
td.ec {
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
td.check {
|
||||||
|
color: green;
|
||||||
|
}
|
||||||
|
|
||||||
/*table > tbody > tr:nth-of-type(odd) { background: white; }
|
/*table > tbody > tr:nth-of-type(odd) { background: white; }
|
||||||
table > tbody > tr:nth-of-type(even) { background: lightblue; }
|
table > tbody > tr:nth-of-type(even) { background: lightblue; }
|
||||||
table > tbody > tr > td:nth-of-type(5) { background: #ffff99; }
|
table > tbody > tr > td:nth-of-type(5) { background: #ffff99; }
|
||||||
table > tbody > tr > td:nth-of-type(6) { background: #ffff99; }
|
table > tbody > tr > td:nth-of-type(6) { background: #ffff99; }
|
||||||
table > tbody > tr > td:nth-of-type(7) { background: #ffff99; }*/
|
table > tbody > tr > td:nth-of-type(7) { background: #ffff99; }*/
|
||||||
|
|
||||||
div.user {
|
div.found {
|
||||||
height:30px;
|
height:30px;
|
||||||
width:30px;
|
width:30px;
|
||||||
clip-path: polygon(100% 70%, 100% 100%, 70% 100%);
|
clip-path: polygon(100% 70%, 100% 100%, 70% 100%);
|
||||||
|
1
coinmanager/coinc/templates/coinc/coin.html
Normal file
1
coinmanager/coinc/templates/coinc/coin.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
<td class="{{ coin.kms }} {{ coin.rare }} {{ coin.noexist }} {{ coin.brass }} {{ coin.ec }} {{ coin.check }}"><div class="{{ coin.found }} {{ coin.found_by }}">{% if coin.found %}x{% endif %}</div></td>
|
@ -9,10 +9,7 @@
|
|||||||
<th colspan="2">x €</th>
|
<th colspan="2">x €</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>{% for year in country.years %}
|
<tbody>{% for stamp in country.stamps %}
|
||||||
<tr>
|
{% show_stamp stamp %}{% endfor %}
|
||||||
<td class="year"><div>{{ year }}</div></td>{% for coin in country|coins:year %}
|
|
||||||
<td class="{{ coin }}"><div></div></td>{% endfor %}
|
|
||||||
</tr>{% endfor %}
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
2
coinmanager/coinc/templates/coinc/stamp.html
Normal file
2
coinmanager/coinc/templates/coinc/stamp.html
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
{% for year in country.years %}
|
||||||
|
{% show_year year %}{% endfor %}
|
5
coinmanager/coinc/templates/coinc/year.html
Normal file
5
coinmanager/coinc/templates/coinc/year.html
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<tr>
|
||||||
|
<td class="year">
|
||||||
|
<div class="{{ year.complete }}">{{ year.short }}</div></td>{% for coin in year.coins %}
|
||||||
|
{% show_coin coin %}{% endfor %}
|
||||||
|
</tr>
|
Loading…
x
Reference in New Issue
Block a user