mirror of
https://github.com/kristoferssolo/FOSSDB.git
synced 2025-10-21 17:50:35 +00:00
28 lines
712 B
HTML
28 lines
712 B
HTML
{% extends "layout.html" %}
|
|
{% load static %}
|
|
{% block title %}{{ title }}{% endblock %}
|
|
{% block meta %}{% endblock %}
|
|
{% block content %}
|
|
<p>{{ username }}</p>
|
|
<button>
|
|
<a href="{% url 'add-project' %}">Add Project</a>
|
|
</button>
|
|
<button>
|
|
<a href="/admin">Admin</a>
|
|
</button>
|
|
<br />
|
|
<form action="get">
|
|
{{ filter.form.as_p }}
|
|
<button type="submit">Filter</button>
|
|
</form>
|
|
{% for project in projects %}
|
|
<div>
|
|
<a href="{{ project.get_absolute_url }}">{{ project }}</a>
|
|
</div>
|
|
<div>{{ project.description }}</div>
|
|
<hr />
|
|
{% empty %}
|
|
<p>No projects found</p>
|
|
{% endfor %}
|
|
{% endblock %}
|