Skip to content

Instantly share code, notes, and snippets.

View tkovalsky's full-sized avatar

toddkovalsky tkovalsky

View GitHub Profile
<table style="width:100%; border-collapse:collapse; font-family:Arial, sans-serif; font-size:14px;">
<thead>
<tr>
<th style="text-align:left; padding:10px; border-bottom:2px solid #ccc;">Step</th>
<th style="text-align:left; padding:10px; border-bottom:2px solid #ccc;">Current</th>
<th style="text-align:left; padding:10px; border-bottom:2px solid #ccc;">Future</th>
</tr>
</thead>
<tbody>
<tr>
@tkovalsky
tkovalsky / commission.py
Created August 16, 2015 17:32
commission calculator
import datetime
from django.conf import settings
from django.contrib.auth.models import User
from django.core.urlresolvers import reverse
from django.db import models
from django.db.models.signals import post_save
from django.utils import timezone
from listings.models import Listing