This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
insert into orders_useradr | |
select | |
NULL as id, | |
p.user_id as user_id, | |
p.city as adr | |
from | |
orders_userprofile as p; | |
update | |
orders_userprofile, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% if pages|length > 1 %} | |
<ul class="page_list"> | |
{% if sel_page > first_rand %} | |
<li><a href="{{ object.get_absolute_url }}{{ get_str }}&page=1">1</a><span>...</span></li> | |
{% endif %} | |
{% for page in pages %} | |
<li><a href="{{ object.get_absolute_url }}{{ get_str }}&page={{ page }}"{% if page == sel_page %} class="sel"{% endif %}>{{ page }}</a></li> | |
{% endfor %} | |
{% if sel_page <= last_rand %} | |
<li><span>...</span> <a href="{{ object.get_absolute_url }}{{ get_str }}&page={{ last }}">{{ last }}</a></li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Echo Off | |
For /R %%F In (*.class) Do ( | |
jad %%F | |
ren %CD%\%%~nF.jad %%~nF.java | |
move %CD%\%%~nF.java %%~dpF | |
) |
NewerOlder