--- trunk/tntnet/dynamic/adm_customer_list.ecpp 2007/11/29 17:06:38 104 +++ trunk/tntnet/dynamic/adm_customer_list.ecpp 2007/12/08 16:47:03 195 @@ -26,10 +26,10 @@

Customers administration

Create new customer
- +
<{ -tntdb::Connection conn = tntdb::connect(dburl); +tntdb::Connection conn = tntdb::connectCached(dburl); std::string query = "SELECT id, name FROM customer ORDER BY name ASC"; @@ -39,15 +39,15 @@ if (res.size() > 0) { out << ""; - for (int i=0; i\n"; + out << "\n"; + out << " "; } out << "
"; - out << "" << name << ""; - out << ""; + out << "
 " << name << "  edit customer"; + out << "  "; out << "manage installations"; - out << "
"; }