Skip to content

Instantly share code, notes, and snippets.

@abhisuri97
Created November 27, 2017 00:34
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save abhisuri97/3f296f5ecc7660b2f1209fb82421adab to your computer and use it in GitHub Desktop.
{% for c in c.categories %}
{{ c.category_name }}
{% endfor %}
```
and we also highlight clubs that aren't confirmed.
```html
<td
{% if c.is_confirmed == False %}
style="background-color: rgba(255, 0, 0, 0.8)"
{% endif %}
>
{{ c.is_confirmed }}
</td>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment