Skip to content

Commit 486f82e

Browse files
committed
Merge pull request #55 from AIFDR/develop
Bump version to 0.1.2
2 parents 8d795e5 + a6b3c86 commit 486f82e

File tree

3 files changed

+5
-27
lines changed

3 files changed

+5
-27
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
Django User Map
22
=================
33

4+
[![Stories in Ready](https://badge.waffle.io/aifdr/inasafe-user-map.png?label=ready&title=Ready)](http://waffle.io/aifdr/inasafe-user-map)
45
[![Develop Branch](https://api.travis-ci.org/AIFDR/inasafe-user-map.svg?branch=develop)](https://travis-ci.org/AIFDR/inasafe-user-map)
56
[![Coverage Status](https://coveralls.io/repos/AIFDR/inasafe-user-map/badge.png?branch=develop)](https://coveralls.io/r/AIFDR/inasafe-user-map?branch=develop)
67

8+
79
A django application for making community user's map. Users can
810
add themselves on the map by providing some information:
911

@@ -40,9 +42,9 @@ Installation
4042
)
4143
```
4244

43-
3. Include user-map URLconf in your project urls.py e.g:
45+
3. Include user-map URLconf in your project urls.py with namespace user_map (required) e.g:
4446
```
45-
url(r'^user-map/', include('user_map.urls')),
47+
url(r'^user-map/', include('user_map.urls', namespace='user_map')),
4648
```
4749

4850
3. Add authentication user model and authentication backend in your django

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name='django-user-map',
13-
version='0.1.1',
13+
version='0.1.2',
1414
author='Akbar Gumbira',
1515
author_email='akbargumbira@gmail.com',
1616
packages=find_packages(),

user_map/static/user_map/css/user-map.css

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -60,30 +60,6 @@ body > .container {
6060
max-width: 700px;
6161
}
6262

63-
/* ******************** */
64-
/* Controls */
65-
/* ******************** */
66-
.leaflet-control-stats {
67-
background: none repeat scroll 0 0 #F8F8F9;
68-
border-radius: 8px 8px 8px 8px;
69-
box-shadow: 0 1px 7px #999999;
70-
}
71-
.leaflet-control-stats a {
72-
background-image: url("../img/update_stats.png");
73-
background-position: 50% 50%;
74-
background-repeat: no-repeat;
75-
display: inline-block;
76-
width: 46px;
77-
}
78-
.leaflet-control-stats div, .leaflet-control-stats a {
79-
height: 46px;
80-
display: inline-block;
81-
line-height: 46px;
82-
}
83-
.leaflet-control-stats div {
84-
padding: 0 5px;
85-
}
86-
8763
/* ******************** */
8864
/* Misc */
8965
/* ******************** */

0 commit comments

Comments
 (0)