Bulding Address: | 307 W 36th St |
Building Alternate address: | 307 W 36th St |
Postleitzahl : | 10018 |
Neighborhood: | Penn Plaza/Garment |
Borough: | Manhattan |
Stories: | 18 |
Year Built: | 1926 |
Building Class: | C |
Block & lot: | 00760-0032 |
307 West 36th Street, located in the Garment District of Manhattan, New York City, is a historic 18-story commercial high-rise building. Completed in 1926 by renowned architect Emery Roth, it was originally known as the Garment Wear Arcade. The building features an elegant, recently renovated white marble arcade lobby with entrances on both 36th and 37th Streets.
With over 250,000 square feet of office space, it has become home to a diverse range of tenants, including notable fashion brands like Rebecca Taylor, civic design firms such as Urbahn Architects, and non-profit organizations like the GOOD+ Foundation and the Neighborhood Housing Services of New York City.
The building offers excellent accessibility with nearby transportation links, including the A, C, and E trains and the Long Island Rail Road from Penn Station. The area is rich in history as part of the Garment District, known for its fashion showrooms and production houses, and has evolved to include media, creative agencies, law firms, and tech companies.
Renovations to the lobby were completed in 2012, enhancing the building's appeal with modern amenities while maintaining its classic pre-war charm.
To save an address like "307 W 36th St, Manhattan, NYC" in a Django model field and display it as HTML, you can use a `CharField` for storing the address and then convert it to HTML when displaying. However, if you want to include HTML tags within the address itself, you should be cautious to avoid XSS vulnerabilities. Here's how you might store and display the address:
### Model Field
First, define a `CharField` in your Django model to store the address:
python
from django.db import models
class Location(models.Model):
address = models.CharField(max_length=255)
### Converting to HTML
If you want to include HTML tags in the address (which is generally not recommended due to security concerns), you can do so when rendering the template. However, ensure that any user-input data is properly sanitized to prevent XSS attacks.
Here's an example of how you might display the address in an HTML template:
{{ location.address|safe }}
In this example, `|safe` tells Django not to escape the HTML, which is risky if the data comes from an untrusted source.
### Safer Approach
A safer approach is to store the address as plain text and apply any necessary formatting in the template using CSS or other styling methods. If you need to include specific HTML elements (like `
` for line breaks), you can do so in the template itself:
{{ location.address }}
And then apply CSS to style it as needed.
### Django Template with HTML Formatting
If you want to include specific HTML elements around the address, you can do so directly in the template:
Address:
{{ location.address }}
This way, you maintain control over the HTML structure while keeping the address data safe and plain.
### Final HTML for Saving in Django Model Field
If you're looking to save a formatted version of the address as HTML in a Django model field (which is generally not recommended), you could store it like this:
307 W 36th St,
Manhattan, NYC
However, this approach is not typically necessary or advisable. Instead, focus on storing plain text and applying formatting in your templates.
To save this HTML in a Django model, ensure you have a `CharField` or `TextField` that can accommodate the HTML string:
python
class Location(models.Model):
address_html = models.TextField()
Then, you can save the HTML string in this field, but remember to use the `|safe` filter when displaying it in a template to prevent Django from escaping the HTML.
307 West 36th Street, Manhattan, NYC
This classic pre-war 18-story commercial high-rise building, originally known as Garment Wear Arcade, offers a range of amenities:
- Elegant White Marble Arcade Lobby: Recently renovated with entrances on both 36th and 37th Streets.
- 24/7 Attended Lobby: Ensures security and convenience for tenants.
- Freight Elevator Service: Facilitates easy movement of goods and equipment.
- Tenant-Controlled HVAC: Allows for personalized climate control.
- Double-Insulated, Operable Windows: Provides natural light and ventilation.
- Security Access: Key card access and closed-circuit cameras enhance building security.
- Telecom Providers: Includes Verizon, Spectrum, and Pilot Fiber.
- Neighborhood Amenities: Close proximity to Penn Station, Times Square, Macy’s, Madison Square Garden, and Bryant Park.
307 West 36th Street, Manhattan, NYC
Located at the corner of West 36th Street and 8th Avenue, this building was completed in 1926 by architect Emery Roth. It is a classic pre-war 18-story commercial high-rise originally known as Garment Wear Arcade.
The building features an elegant, recently renovated white marble arcade lobby with entrances on both 36th and 37th Streets. It offers over 250,000 square feet of office space in the historic Garment District.
Current Tenants by Business Type:
- Fashion: Rebecca Taylor
- Civic Design: Urbahn Architects
- Non-Profit:
- GOOD+ Foundation
- Neighborhood Housing Services of New York City
- Media/Production: SMASH Studios (located on the 18th floor)
Building Specifications:
- Year Built: 1926
- Renovations: Lobby renovated in 2012
- Total Building Size: 251,000 SF
- Floors: 18, plus mezzanine, 2 below-grade
- Transportation Links: A, C, E trains, and LIRR from Penn Station
Contact Information:
- Property Manager: Sam Mohabir - smohabir@gfpre.com, (212) 354.2930
- Asset/Leasing Manager: Barbara Yagoda - byagoda@gfpre.com, (212) 372.2168
- Superintendent: Jeffrey Swasey - jswasey@gfpre.com, (212) 563.5342
Internet Providers at 307 W 36th St, Manhattan, NYC:
- Verizon: Offers Fiber and Fixed Wireless services with speeds up to 2,300 Mbps for Fiber and up to 1,000 Mbps for Fixed Wireless.
- Earthlink: Provides Fiber service with speeds up to 2,300 Mbps.
- Spectrum: Offers Cable service with speeds up to 1,000 Mbps.
- Astound Broadband: Provides Cable service with speeds up to 1,500 Mbps.
- T-Mobile Home Internet: Offers Fixed Wireless service with speeds up to 100 Mbps.
- STARRY: Provides Fixed Wireless service with speeds up to 300 Mbps.
Availability and speeds may vary based on specific addresses within the building.
307 West 36th Street in Manhattan, NYC, offers convenient transportation options:
- Subway: The nearest subway stations are 34 St-Herald Sq and 34 St-Penn Station, both within a 4-minute walk. Subway lines include A, C, E, B, M, Q, R, D, F, and more.
- Bus: Several bus lines stop nearby, including the M55, Q32, and QM10. The closest bus stop is at W 34 St/7 Av.
- Train: Penn Station is nearby, providing access to the Long Island Rail Road (LIRR) and other trains.
Cross Streets: The building is located at the corner of West 36th Street and 8th Avenue.
None
None