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
<div class="main-wrapper"> <!-Process for User looking for data--> | |
<div class="working-process-area"> | |
<div class="container"> | |
<div class="row justify-content-center"> | |
<div class="col-lg-6"> | |
<div class="section-title text-center"> | |
<h2>So, how does it work?</h2> | |
<p>What a good question. Here's how it works.</p> <!--this looked just fine with 2 lines of text--> | |
</div> |
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
......... Oh shit, you were waiting for me to do something? Oh okay, well then. | |
% | |
Not panicking...totally not panicking...er...everything's fine... | |
% | |
Following the white rabbit.... | |
% | |
"Going the distance..." | |
% | |
The Elders of the Internet are contemplating your request... | |
% |
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 urllib2 | |
import mimetypes | |
from django.conf import settings | |
from django.db import models | |
from django.contrib.auth.models import User | |
class Category(models.Model): | |
name = models.CharField(max_length=32) | |
class Meta: |