Improve teams page on mobile and correcting populate.py

selenium-screenshot-testing
CodeKevin 2016-02-07 05:09:21 -05:00
parent 023d81cb92
commit 3d0a3f0824
2 changed files with 237 additions and 888 deletions

View File

@ -34,14 +34,18 @@
<thead>
<tr>
<td><b>Challenge</b></td>
<td><b>Category</b></td>
<td class="hidden-xs"><b>Category</b></td>
<td><b>Value</b></td>
<td><b>Time</b></td>
</tr>
</thead>
<tbody>
{% for solve in solves %}
<tr><td><a href="/challenges#{{ solve.chal.name }}">{{ solve.chal.name }}</a></td><td>{{ solve.chal.category }}</td><td>{{ solve.chal.value }}</td><td class="solve-time"><script>document.write( moment({{ solve.date|unix_time_millis }}).local().format('MMMM Do, h:mm:ss A'))</script></td></tr>
<tr>
<td><a href="/challenges#{{ solve.chal.name }}">{{ solve.chal.name }}</a></td>
<td class="hidden-xs">{{ solve.chal.category }}</td><td>{{ solve.chal.value }}</td>
<td class="solve-time"><script>document.write( moment({{ solve.date|unix_time_millis }}).local().format('MMMM Do, h:mm:ss A'))</script></td>
</tr>
{% endfor %}
</tbody>
</table>

File diff suppressed because it is too large Load Diff