1
0
mirror of https://github.com/bspeice/Melodia synced 2025-07-03 15:04:43 -04:00

Initial login templates and views

This commit is contained in:
Bradlee Speice
2013-02-05 14:20:26 -05:00
parent c5fec8cfd3
commit 4f9b717674
8 changed files with 71 additions and 33 deletions

View File

@ -36,7 +36,18 @@ List of block elements in this page:
<div class="navbar-inner">
<div class="container">
<a class="brand" href="#">{% block navbar_title %}{% endblock %}</a>
{% block navbar_content %}{% endblock %}
{% block navbar_content %}
<div class="btn-group pull-right">
<a class="btn" href="#">{{ user.username }}</a>
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#"><span class="caret" /></a>
<ul class="dropdown-menu">
<li id="btn_logout"><a href="/logout">Logout</a></li>
</ul>
</div>
{% endblock %}
</div>
</div>
</div>

View File

@ -0,0 +1,11 @@
{# This component assumes it has been placed in a sidebar, and controls options related to playlists. #}
<ul class="nav nav-list">
<li class="nav-header">Playlists</li>
{% for playlist in Playlist.objects.all %}
<li>{{ playlist.name }}</li>
{% endfor %}
</ul>
<!-- vim: ft=htmldjango

View File

@ -5,7 +5,7 @@
{% block navbar_title %}Melodia{% endblock %}
{% block sidebar_content %}
<a href="#">Sidebar content goes here.</a>
{% include "components/playlist_sidebar" %}
{% endblock %}
{% block body_content %}

View File

@ -3,8 +3,10 @@
{% block page_title %}Login to Melodia{% endblock %}
{% block navbar_title %}Login to Melodia{% endblock %}
{# Disable navbar content other than the title #}
{% block navbar_content %}{% endblock %}
{# Specifying a blank sidebar, rather than sidebar_content, allows us to remove the sidebar entirely. #}
{# Similar to navbar, but remove entire sidebar #}
{% block sidebar %}{% endblock %}
{% block body %}
@ -22,8 +24,8 @@
<button class="btn btn-primary">Login to Melodia</button>
</form>
{% if auth_form.non_field_errors %}
<div class="alert alert-error span4 offset4">{{ auth_form.non_field_errors }}</div>
{% if login_error %}
<div class="alert alert-error span4 offset4">{{ login_error }}</div>
{% endif %}
</center>