1
0
forked from orson/bachemap
bachemap/templates/dashboard.html

16 lines
316 B
HTML

{% extends 'secondbase.html' %}
{% block content %}
<h3>Hola {{current_user.username}}</h3>
<p>Tu link de invitación es:</p>
<p>https://baches.qro.mx/registrame/{{current_user.referral_code}}</p>
{% if pins %}
{% for pin in pins %}
<p>
{{pin}}
</p>
{% endfor %}
{% endif %}
{% endblock %}