FOSSDB/templates/fossdb/index.html
2023-04-07 14:31:41 +03:00

21 lines
537 B
HTML

{% extends "layout.html" %}
{% load static %}
{% block title %}{{ title }}{% endblock %}
{% block meta %}{% endblock %}
{% block content %}
<button >
<a href="{% url 'add-project' %}">Add Project</a>
</button>
<button >
<a href="/admin">Admin</a>
</button>
<br>
{% for project in projects %}
<b>@{{ project.author.username }}</b>
<h5>{{ project.title }}</h5>
<p>{{ project.description }}</p>
{% empty %}
<p>No projects yet (</p>
{% endfor %}
{% endblock %}