finished product

This commit is contained in:
2018-04-27 10:12:40 -06:00
commit 6b6f5ff1f4
49 changed files with 1266 additions and 0 deletions

10
conversion/models.py Normal file
View File

@@ -0,0 +1,10 @@
from django.db import models
# Create your models here.
class Converter(models.Model):
units = models.CharField(max_length=200)
value = models.FloatField()
def __str__(self):
return '%s, %f' % (self.units, self.value)