Changes between Initial Version and Version 1 of Ticket #23696
- Timestamp:
- Oct 21, 2014, 1:38:42 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #23696 – Description
initial v1 1 1 Hi, I'm not sure if this is intentional but when someone comes to your home page and downloads 1.7, they expect the documentation for i18n_patterns to apply to 1.7 and not 1.8. I spent all day trying to figure out why 2 2 3 4 {{{ 3 5 i18n_patterns( 4 6 url(r'^home/$', views.index, name='index'), 5 7 ) 6 8 7 is wrong since I just copied the example you guys posted, but after reading between the lines on the statement about prefix being deprecated in 1.8, I realized that the provided example must be for 1.8 and not 1.7 and got the url working by doing i18n_patterns('', ...) 9 }}} 10 11 is wrong since I just copied the example you guys posted, but after reading between the lines on the statement about prefix being deprecated in 1.8, I realized that the provided example must be for 1.8 and not 1.7 and got the url working by doing 12 {{{ 13 i18n_patterns('', ...) 14 }}}