-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
acd5bbe
commit 2bd7d6e
Showing
59 changed files
with
620 additions
and
235 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+1018 Bytes
takesides/__pycache__/urls.cpython-35.pyc → ...na/yaorna/__pycache__/urls.cpython-35.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<link rel="stylesheet/less" href="{{ STATIC_URL }}style.less"> | ||
<script src="{{ STATIC_URL }}less.js"></script> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="wrapper"> | ||
<img src="{{ STATIC_URL }}gfx/logo.png"> | ||
<span>Twitter Clone</span> | ||
{% block login %} | ||
<a href="/">Home</a> | ||
<a href="/users/">Public Profiles</a> | ||
<a href="/users/{{ username }}">My Profile</a> | ||
<a href="/ribbits">Public Ribbits</a> | ||
<form action="/logout"> | ||
<input type="submit" id="btnLogOut" value="Log Out"> | ||
</form> | ||
{% endblock %} | ||
</div> | ||
</header> | ||
<div id="content"> | ||
<div class="wrapper"> | ||
{% block flash %} | ||
{% if auth_form.non_field_errors or user_form.non_field_errors or ribbit_form.errors %} | ||
<div class="flash error"> | ||
{{ auth_form.non_field_errors }} | ||
{{ user_form.non_field_errors }} | ||
{{ ribbit_form.content.errors }} | ||
</div> | ||
{% endif %} | ||
{% if notice %} | ||
<div class="flash notice"> | ||
{{ notice }} | ||
</div> | ||
{% endif %} | ||
{% endblock %} | ||
|
||
{% block content %} | ||
|
||
{% endblock %} | ||
</div> | ||
</div> | ||
<footer> | ||
<div class="wrapper"> | ||
Ribbit - A Twitter Clone Tutorial | ||
<a href="http://net.tutsplus.com"> | ||
<img src="{{ STATIC_URL }}gfx/logo-nettuts.png"> | ||
</a> | ||
<a href="http://www.djangoproject.com/"> | ||
<img src="https://www.djangoproject.com/m/img/badges/djangomade124x25.gif" border="0" alt="Made with Django." title="Made with Django." /> | ||
</a> | ||
</div> | ||
</footer> | ||
</body> | ||
</html> |
Oops, something went wrong.