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
{{ value|date:"Y-m-d G:i:s" }} | |
{# For use with Timeago: http://timeago.yarp.com/ #} | |
<abbr class="timeago" title="{{ entry.created|date:"Y-m-d G:i:s" }}">Whatever</abbr> | |
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
from django.http import HttpResponseRedirect | |
from django.views.generic import list_detail | |
from myapp.models import * | |
from myapp.forms import EntryForm | |
def entry_list(request, page=0): | |
if request.POST: | |
form = EntryForm(data=request.POST) | |
if form.is_valid(): | |
form.save() |
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
<VirtualHost *:80> | |
ServerName example.com | |
ServerAlias www.example.com | |
RewriteEngine On | |
RewriteCond %{HTTP_HOST} ^(www\.)?example\.com$ [NC] | |
RewriteRule ^(.*)?$ http://new-example.com$1 [R=301,L] | |
</VirtualHost> | |
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
<VirtualHost *:80> | |
ServerName example.com | |
ServerAlias www.example.com | |
RewriteEngine On | |
# No WWW | |
RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC] | |
RewriteRule ^(.*)$ http://example.com$1 [R=301,L] | |
</VirtualHost> |
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
# http://www.technobabble.dk/2008/aug/25/django-mod-wsgi-perfect-match/ | |
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
ServerName example.com | |
DocumentRoot /home/you/public_html/example_com/public | |
# Django settings | |
WSGIScriptAlias / /home/you/public_html/example_com/wsgi_handler.py | |
WSGIDaemonProcess example_com user=you group=you processes=1 threads=10 |
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
import os.path | |
MEDIA_ROOT = os.path.join(os.path.dirname(__file__), "public/static/") | |
TEMPLATE_DIRS = ( | |
os.path.join(os.path.dirname(__file__), "templates"), | |
) | |
FORCE_LOWERCASE_TAGS = True | |
SESSION_COOKIE_NAME = 'your_project' |
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
// http://www.learningjquery.com/2008/02/simple-effects-plugins | |
jQuery.fn.fadeToggle = function(speed, easing, callback) { | |
return this.animate({opacity: 'toggle'}, speed, easing, callback); | |
}; | |
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
// http://dev.jquery.com/ticket/1092 | |
jQuery.fn.toggleText = function(a, b) { | |
return this.each(function() { | |
jQuery(this).text(jQuery(this).text() == a ? b : a); | |
}); | |
}; |
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
To delete a blank note in Backpack, open up the dashboard widget and enter some text in the note. Then you'll be able to get the hover delete widget on the website. |
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
<!-- Screencast "Designing Web Content for iPhone @ 20:59 - "Viewport Examples" | |
<!-- Default viewport width = 980px --> | |
<!-- https://developer.apple.com/webapps/docs/documentation/AppleApplications/Reference/SafariWebContent/UsingtheViewport/chapter_4_section_5.html --> | |
<meta name="viewport" content="width=device-width, user-scalable=no"> | |
<!-- or --> | |
<meta name="viewport" content="maximum-scale=1.0,width=device-width,initial-scale=1.0"> |