Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 214ee62

Browse files
committedApr 21, 2010
RSTify readme
1 parent e20b54c commit 214ee62

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed
 

‎README renamed to ‎README.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Django PostgreSQL Netfilters
2-
============================
1+
Django PostgreSQL Netfields
2+
===========================
33

44
This project is an attempt at making proper Django net related fields for Django
55
Currently the built in IPAddressField does not support IPv6 and uses an inefficient
@@ -19,13 +19,13 @@ version used by the related project that initiated this effort.
1919
Getting started
2020
---------------
2121

22-
Make sure netfields is in your PYTHONPATH, then simply use the following:
22+
Make sure netfields is in your PYTHONPATH, then simply use the following::
2323

2424
from netfields import InetAddressField, NetManager
2525

2626
class Example(models.Model):
2727
inet = InetAddressField()
28-
...
28+
# ...
2929

3030
objects = NetManager()
3131

@@ -36,10 +36,10 @@ All lookups are case-insensitive and text based lookups are avoided whenever
3636
possible. In addition to Django's default lookup types the following have been
3737
added.
3838

39-
__net_contained
40-
__net_contained_or_equal
41-
__net_contains
42-
__net_contains_or_equals
39+
* __net_contained
40+
* __net_contained_or_equal
41+
* __net_contains
42+
* __net_contains_or_equals
4343

4444
These correspond with the operators from
4545
http://www.postgresql.org/docs/8.3/interactive/functions-net.html

0 commit comments

Comments
 (0)
Please sign in to comment.