Indirizzo dell'edificio: | 43-51 W 36th St |
Building Alternate address: | 43-51 W 36th St |
Codice postale: | 10018 |
Quartiere: | Penn Plaza/Garment |
Distretto: | Manhattan |
# Storie: | 12 |
Year Built: | 1917 |
Building Class: | C |
Block & lot: | 00838-0015 |
43-51 West 36th Street in Manhattan, NYC, is part of a historically industrial area. While specific details about this exact address are limited, the surrounding neighborhood has a rich history tied to its industrial past, including being close to what was once known as Abattoir Place due to the numerous slaughterhouses in the area.
Historically, the area was home to various industrial and commercial businesses, such as fruit packing plants and wholesale meat provision companies. Over time, these businesses have given way to other uses, reflecting broader changes in Manhattan's economic landscape.
Today, the area is undergoing significant redevelopment, with many older buildings being repurposed or replaced by modern structures. This transformation is part of the broader urban renewal efforts in Manhattan, particularly around Hudson Yards.
To convert the address "43-51 W 36th St, Manhattan, NYC" into HTML and save it in a Django model field, you can use a `TextField` or `CharField` depending on your needs. Here's how you might represent it in HTML and save it:
43-51 W 36th St, Manhattan, NYC
However, if you want to save this as plain text in a Django model, you wouldn't need to convert it to HTML. You could simply use a `CharField` or `TextField`:
python
from django.db import models
class Address(models.Model):
address = models.TextField() # or models.CharField(max_length=200)
Then, you can save the address as plain text:
python
address_obj = Address(address="43-51 W 36th St, Manhattan, NYC")
address_obj.save()
If you truly need to store HTML in your model, ensure that you handle any potential security risks, such as cross-site scripting (XSS) attacks, by properly sanitizing the input. Django's built-in forms and templates can help with this by automatically escaping HTML content.
Here's an example of how you might store and display HTML content safely:
python
from django.db import models
class Address(models.Model):
address_html = models.TextField()
# Saving HTML content (ensure it's safe)
address_obj = Address(address_html="
43-51 W 36th St, Manhattan, NYC
")
address_obj.save()
# Displaying HTML content safely in a Django template
# Use the 'safe' filter to prevent auto-escaping
# In your template:
# {{ address_obj.address_html|safe }}
**Important Note**: Using the `safe` filter can expose your site to XSS attacks if the content is not properly sanitized. Always ensure that any HTML content stored in your database is safe and trusted.
Building Amenities at 43-51 W 36th St, Manhattan, NYC:
- Located in the Penn Plaza/Garment neighborhood
- 12-story office building
- Year built: 1917
- Building class: C
- Office spaces available for rent or lease
- Windowed and interior offices available
- Negotiable rent per square foot
43-51 W 36th St, Manhattan, NYC
This building is located in the heart of Manhattan and hosts a variety of office and retail tenants.
Current Tenants by Type of Business:
- Office Tenants:
- Law Firms
- Marketing Agencies
- Financial Services
- Retail Tenants:
- Clothing Stores
- Restaurants
- Coffee Shops
**Note:** The actual list of tenants is not provided in the search results. You would need to replace the placeholder items with the actual tenants of the building.
To save this HTML in a Django model field, ensure that the field is a `TextField` or similar, which can handle HTML content. You might also consider using a `RichTextField` from a library like Django CKEditor for more advanced text editing capabilities.
Here's an example of how you might define such a field in a Django model:
python
from django.db import models
class BuildingDetails(models.Model):
building_address = models.CharField(max_length=200)
tenant_list_html = models.TextField(blank=True, null=True)
Then, you can save the HTML content into the `tenant_list_html` field.
Internet Providers at 43-51 W 36th St, Manhattan, NYC:
- Verizon Fios: Known for high speeds up to 2 Gbps, reliable service, and competitive pricing starting at $49.99.
- Astound Broadband Powered by RCN: Offers cable and fiber services with unlimited data, starting at $20 per month.
- Spectrum: Provides widespread coverage with speeds up to 1 Gbps, starting at $50 per month.
- T-Mobile 5G Home Internet: Offers wireless internet with speeds between 133 Mbps and 415 Mbps, starting at $60 per month.
Location: 43-51 W 36th St, Manhattan, NYC
Transportation Options:
- Bus: 119, 158, M55, Q32, QM10, QM24
- Train: HUDSON, LONG BEACH BRANCH, PATH
- Subway: B, M, Q, R, D, F, A, C, E
Nearest Subway Station: 34 St-Herald Sq (3 min walk)
Nearest Train Station: 33rd Street (3 min walk)
Cross Streets: 6th Avenue, 7th Avenue
None
None