Login
4 branches 0 tags
Ben (U939/Arch Linux) Some styling / nicer form validation d580b41 1 month ago 23 Commits
rubhub / templates / project.html
<!DOCTYPE html>
<html>
<head>
    <title>Project</title>
</head>
<body>
    <section>
        <h1>{{ name }}</h1>
        {% if can_manage %}
            <p><a class="btn" href="/{{ owner }}/{{ slug }}/settings">Project settings</a></p>
        {% endif %}
        <div class="card">
            <p>Owner: {{ owner }}</p>
            <p>Access: {{ access_level }}</p>
        </div>
    </section>
</body>
</html>