[READ-ONLY] Mirror of https://github.com/shuuji3/django-litestream-playground. Playground for django-litestream package django-litestream-playground.shuuji3.xyz/
django litestream
0

Configure Feed

Select the types of activity you want to include in your feed.

style: use code tag for table names

+2 -2
+2 -2
templates/home.html
··· 11 11 <dt>Table names:</dt> 12 12 <dd> 13 13 {% for name in tables %} 14 - <li>{{ name }}</li> 14 + <li><code>{{ name }}</code></li> 15 15 {% endfor %} 16 16 </dd> 17 17 <dt>Index names:</dt> 18 18 <dd> 19 19 {% for name in index_tables %} 20 - <li>{{ name }}</li> 20 + <li><code>{{ name }}</code></li> 21 21 {% endfor %} 22 22 23 23 </dd>