Login
4 branches 0 tags
Ben (U939/Arch Linux) Removed explicit CSRF cookie, SameSite=Lax should be enough 0cf2e0a 1 month ago 43 Commits
rubhub / templates / project_list.html
<!DOCTYPE html>
<html>
<head>
	<title>{{ username }}'s projects</title>
</head>
<body>
	<section>
		<div class="page-header">
			<h1>{{ username }}'s projects</h1>
			{% if is_owner %}
				<a class="btn" href="/projects/new">New project</a>
			{% endif %}
		</div>
		{% if projects.len() == 0 %}
			<p>No projects published yet.</p>
		{% else %}
			<div class="card-grid">
				{% for project in projects %}
					{% include "project_card.html" %}
				{% endfor %}
			</div>
		{% endif %}
	</section>
</body>
</html>