```html
Here are two methods to output an HTML template as it is using Django's TemplateView class, but replacing strings in the output result at once.
Fix an `import requests` failure caused by a missing `_ssl` module in Python 3 on macOS — rebuild Python via pyenv so it links against the system OpenSSL.
As I wrote in this article http://b.ytyng.com/a-61/, when you make an HTTPS connection with OpenSSL 1.0.1f and attempt to connect using TLS1.2 by issuing a hello, certain sites may freeze in response.
url(r'^login/', 'django.contrib.auth.views.login', name='login',
kwargs={'template_name': 'admin/login.html',
'extra_context': {'next': '/'}}),
Write this link in the template as follows,
There is a system called Mezzanine for building a CMS on Python + Django. By default, blog entries are written using a WYSIWYG HTML editor, but I wanted to write them using reStructured Text (reST, rst), so I did some research.