Skip to content

Commit

Permalink
Added members template to show all persons who are staff
Browse files Browse the repository at this point in the history
  • Loading branch information
Fer-Bar committed May 26, 2024
1 parent d5a6ac1 commit 6c4d5bc
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions people/templates/people/members.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{% extends "base.html" %}
{% load static %}

{% block title %}
Nuestros Miembros
{% endblock %}

{% block styles %}
{% endblock %}

{% block content %}

<ul>
{% for person in people %}
<li>{{ person }}</li>
{% endfor %}
</ul>



{% endblock %}

{% block scripts %}
{% endblock %}

0 comments on commit 6c4d5bc

Please sign in to comment.