I'm so stoked about this that I keep thinking of new ways we can increase the 'drop-in-replacement' character of tw2.bootstrap. Often, people mix-and-match tw2.forms and tw2.sqla in their applications. To make it easier for us to accommodate that case, we might want to take everything now in tw2.bootstrap and move it to tw2.bootstrap.forms and create a second distribution called tw2.bootstrap.sqla. That way, for people who have code like
import tw2.forms as twf
import tw2.sqla as tws
...they can just replace it with the following and be on their merry way.
import tw2.bootstrap.forms as twf
import tw2.bootstrap.sqla as tws
I'm so stoked about this that I keep thinking of new ways we can increase the 'drop-in-replacement' character of
tw2.bootstrap. Often, people mix-and-matchtw2.formsandtw2.sqlain their applications. To make it easier for us to accommodate that case, we might want to take everything now intw2.bootstrapand move it totw2.bootstrap.formsand create a second distribution calledtw2.bootstrap.sqla. That way, for people who have code like...they can just replace it with the following and be on their merry way.