demo-hackernews-with-django.../app/web/templates/pages/list.html
Andros Fenollosa 9f6fcf447d Add statics
2021-06-23 15:10:44 +02:00

11 lines
377 B
HTML

{% extends 'layouts/base.html' %}
{% block title %}Welcome{% endblock %}
{% block main %}
<article v-for="item in news">
<h2><span>[[ item.votes ]]</span> - [[ item.title ]]</h2>
<p>
<a :href="item.url" target="_blank">Ver completo</a>
<button @click.prevent="votar(item.id)">Votar</button>
</p>
</article>
{% endblock %}