Thursday, May 31, 2018

Re: A Web Developer is currently needed for a contract job in Lagos,Nigeria

You may want to talk to Tim Akinbo.
+2348033797801

He's highly highly recommended if he's available.

Regards.

On Thu, May 31, 2018, 06:11 Adefioye Temidayo <temidjoy@gmail.com> wrote:

URGENT A Web Developer is currently needed for a contract job in Lagos,Nigeria Location: 70% remote Pay: #300,000 - #400,000 Preferred: * 3 years+ experience in web development * Python Django * Apache & uWSGI server configuration * Experience with project planning and estimation. * Experience working with Angular 2 or 4 * Relational Databases/SQL: * PostgreSQL * Query creation & optimization * Refactoring code inefficiencies with database operations * Agile Software Development- SCRUM * Test Driven Development and Unit Testing * Continuous Integration * Source control management tools: Mercurial (preferred), Git, SVN.TFS(Team foundation Server) * Experience with Responsive Design If you are interested kindly send your portfolio to temidjoy.adefioye@diylaw.ng

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/c09a28d7-a6c6-4de8-9727-8bd39b7de9c7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAHjgLX6FwOKHKMuCdEgr6uDOc5ei%2Bat%3DsTBFVnE7FhHN8-BfpQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Re: href not working

On donderdag 31 mei 2018 05:56:59 CEST Caleb Bryson wrote:
> So i am trying to create a directory with a Home,Blog,and Contact
> selection. But every time i click on one of them they all go back to the
> home page.

If the url in your addressbar is /blog/ after clickin on it, but you see the
homepage content, then your homepage url pattern matches too much.

If you get redirected to the homepage, then there's something wrong in your
blog view code.

Given that it applies to both contact and blog, the first option is more
likely, but you could be making the same mistake in both views.

--
Melvyn Sopacua

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/1865269.oQ2Mhu4JUg%40fritzbook.
For more options, visit https://groups.google.com/d/optout.

Re: installation help please

please use some kind of virtual environment... in linux its virtualenvs


Rafael E. Ferrero

2018-05-31 8:06 GMT-03:00 kailash jangu <kailash151297@gmail.com>:
guys i installed django version 2.0.5 in windows but when i use django-admin command it shows me error what path i should i go with to get start with my newproject and do database api driver has role in it. i have my django-admin executive and python file in pyhton36/scripts what do i do help please...

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/139a9b30-7301-4ac9-a0af-816621fda116%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAJJc_8XS%2BdX_sTQUXQcLPrDSFaszLzhoAqayWHZF0Ax2bp4ptQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

installation help please

guys i installed django version 2.0.5 in windows but when i use django-admin command it shows me error what path i should i go with to get start with my newproject and do database api driver has role in it. i have my django-admin executive and python file in pyhton36/scripts what do i do help please...

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/139a9b30-7301-4ac9-a0af-816621fda116%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Re: href not working

On 31/05/2018 1:56 PM, Caleb Bryson wrote:
> So i am trying to create a directory with a Home,Blog,and Contact
> selection. But every time i click on one of them they all go back to
> the home page.

It feels like your urls.py is insufficiently fleshed out or maybe your
home page url isn't fully formed. Django obviously thinks that whatever
is handed in can be interpreted as requesting the home page view.

For example, I would expect your home page url pattern (url or re_path
depending on Django version) might look something like ...

url_patterns = [
    url(r'^$', home_page_view),
    ...
]

If you have omitted that $ anything will match and your home page view
will be called.

Just a guess


> How do i fix this, and here is the secton of code below. let me know
> if you need to see more
>
> <div class="well bs-sidebar" id="sidebar" style="background-color:#fff">
> <ol class="nav nav-pills nav-stacked">
> <li><a href='/'>Home</a></li>
> <li><a href='/blog/'>Blog</a></li>
> <li><a href='/contact/'>Contact</a></li>
> </ol>
> </div>
> --
> You received this message because you are subscribed to the Google
> Groups "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to django-users+unsubscribe@googlegroups.com
> <mailto:django-users+unsubscribe@googlegroups.com>.
> To post to this group, send email to django-users@googlegroups.com
> <mailto:django-users@googlegroups.com>.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/9dc7004b-4fff-412d-8560-6308f13db92c%40googlegroups.com
> <https://groups.google.com/d/msgid/django-users/9dc7004b-4fff-412d-8560-6308f13db92c%40googlegroups.com?utm_medium=email&utm_source=footer>.
> For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/073f2ff6-a8a9-da49-0e16-575db697b3f6%40dewhirst.com.au.
For more options, visit https://groups.google.com/d/optout.

Re: Multisite strategy

Il giorno mer 23 mag 2018 alle ore 17:02 Daniel Germano Travieso
<danielgtravieso@gmail.com> ha scritto:
>
> Hello!
> The Sites Framework is exactly what you need (and the proper internationalization/localization for the languages).
> Just set up your 3 sites the Django way (creating the propper settings.py for each site)
> Then you can run each site using `manage.py runserver <port> --settings <specific_settings>.py`
>
> You can access each different site in development by going to localhost:<port>
>
> As a suggestion, to avoid overhead in the creation of a site that is only responsible for the choice of the site and language, I would assing one of the two sites to be the default one, but the first action the user takes when accessing the site is to choose location and language, but it is a personal thing and your way can and will work fine!
>
> Hope it helps!


Thank you!

Is it possible to change the current site at runtime?


>
> []'s
> Daniel Germano Travieso
> Engenharia da Computação Turma: 013
> Unicamp
>
> On Tue, May 22, 2018 at 3:31 AM, Carlo Ascani <carlo.ratm@gmail.com> wrote:
>>
>> Hi all,
>>
>> I'd like to implement something like this:
>>
>> One Django project to serve 3 sites:
>> 1. `domain.com` which is the "master" site, containing just a landing page
>> 2. `de.domain.com` which is the "German" site
>> 3. `en.domain.com` which is the "UK" site
>>
>> `de` and `en` refers the location, not the language (e.g. `de.domain.com/en/` is the German site in English)
>>
>> If you go to `domain.com` you can choose the language and the country, and you are just redirected to the right place.
>>
>> Is `contrib.site` suitable for that scenario?
>> I was thinking at 3 different sites.
>> If so, how can I use them locally while in development?
>>
>> Any other suggestions?
>>
>> Best,
>> Carlo
>>
>>
>> --
>> You received this message because you are subscribed to the Google Groups "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
>> To post to this group, send email to django-users@googlegroups.com.
>> Visit this group at https://groups.google.com/group/django-users.
>> To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/3b068855-78e7-4742-890d-1fc8a545b4f4%40googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>
>
> --
> You received this message because you are subscribed to the Google Groups "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CABF8kZM%2BD-4Cou6s0bHJC15MeXLjeEaVrLBLdDTHd5%3DG1%3DupPA%40mail.gmail.com.
> For more options, visit https://groups.google.com/d/optout.



--
Carlo Ascani aka carloratm

http://carlo.ratm.gitlab.io
carloratm@freenode

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CABVJJr8ONoKEWyYa-_43JMb%3DhnzRa_d6JzNfK29G58SkiwJQAw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

A Web Developer is currently needed for a contract job in Lagos,Nigeria


URGENT A Web Developer is currently needed for a contract job in Lagos,Nigeria Location: 70% remote Pay: #300,000 - #400,000 Preferred: * 3 years+ experience in web development * Python Django * Apache & uWSGI server configuration * Experience with project planning and estimation. * Experience working with Angular 2 or 4 * Relational Databases/SQL: * PostgreSQL * Query creation & optimization * Refactoring code inefficiencies with database operations * Agile Software Development- SCRUM * Test Driven Development and Unit Testing * Continuous Integration * Source control management tools: Mercurial (preferred), Git, SVN.TFS(Team foundation Server) * Experience with Responsive Design If you are interested kindly send your portfolio to temidjoy.adefioye@diylaw.ng

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/c09a28d7-a6c6-4de8-9727-8bd39b7de9c7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.